├── .DS_Store ├── README.md ├── entrenamiento ├── Ejercicio Entrenamiento 6.pdf ├── Ejercicio entrenamiento 1.pdf ├── Ejercicio entrenamiento 2.pdf ├── Ejercicio entrenamiento 3.pdf ├── Ejercicio entrenamiento 4.pdf ├── Ejercicio entrenamiento 5.pdf ├── Ejercicios Entrenamiento 3 - paises.js └── Ejercicios Entrenamiento 4 - pokemons │ ├── Ejercicios Entrenamiento 4 - pokemons.js │ ├── bolbasaur.png │ ├── charmander.png │ ├── pikachu.png │ └── squartle.png ├── final ├── Final_00.pdf ├── index.html └── style.css ├── primer_parcial ├── .DS_Store ├── modelo_1 │ ├── index.html │ └── style.css └── modelo_2 │ ├── index.html │ └── style.css └── segundo_parcial ├── index15.html └── index16.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spizzirri/programacionwebi-base/a64f5feb0a83f9a140f9df65a8abc5271c4d113e/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | [Documentacion Oficial HTML](https://html.spec.whatwg.org/multipage/) 3 | 4 | [Documentacion Oficial CSS](https://www.w3.org/Style/CSS/) 5 | 6 | [Documentacion no oficial HTML, CSS y JS](https://developer.mozilla.org/es/) 7 | 8 | [Actualidad de JS](https://github.com/tc39) 9 | -------------------------------------------------------------------------------- /entrenamiento/Ejercicio Entrenamiento 6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spizzirri/programacionwebi-base/a64f5feb0a83f9a140f9df65a8abc5271c4d113e/entrenamiento/Ejercicio Entrenamiento 6.pdf -------------------------------------------------------------------------------- /entrenamiento/Ejercicio entrenamiento 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spizzirri/programacionwebi-base/a64f5feb0a83f9a140f9df65a8abc5271c4d113e/entrenamiento/Ejercicio entrenamiento 1.pdf -------------------------------------------------------------------------------- /entrenamiento/Ejercicio entrenamiento 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spizzirri/programacionwebi-base/a64f5feb0a83f9a140f9df65a8abc5271c4d113e/entrenamiento/Ejercicio entrenamiento 2.pdf -------------------------------------------------------------------------------- /entrenamiento/Ejercicio entrenamiento 3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spizzirri/programacionwebi-base/a64f5feb0a83f9a140f9df65a8abc5271c4d113e/entrenamiento/Ejercicio entrenamiento 3.pdf -------------------------------------------------------------------------------- /entrenamiento/Ejercicio entrenamiento 4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spizzirri/programacionwebi-base/a64f5feb0a83f9a140f9df65a8abc5271c4d113e/entrenamiento/Ejercicio entrenamiento 4.pdf -------------------------------------------------------------------------------- /entrenamiento/Ejercicio entrenamiento 5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spizzirri/programacionwebi-base/a64f5feb0a83f9a140f9df65a8abc5271c4d113e/entrenamiento/Ejercicio entrenamiento 5.pdf -------------------------------------------------------------------------------- /entrenamiento/Ejercicios Entrenamiento 3 - paises.js: -------------------------------------------------------------------------------- 1 | const countries = [ 2 | { name: "Argentina", abbreviation: "AR", continent: "América del Sur", flag: "🇦🇷", language: "Español" }, 3 | { name: "Australia", abbreviation: "AU", continent: "Oceanía", flag: "🇦🇺", language: "Inglés" }, 4 | { name: "Brasil", abbreviation: "BR", continent: "América del Sur", flag: "🇧🇷", language: "Portugués" }, 5 | { name: "Canadá", abbreviation: "CA", continent: "América del Norte", flag: "🇨🇦", language: "Inglés, Francés" }, 6 | { name: "China", abbreviation: "CN", continent: "Asia", flag: "🇨🇳", language: "Chino" }, 7 | { name: "Colombia", abbreviation: "CO", continent: "América del Sur", flag: "🇨🇴", language: "Español" }, 8 | { name: "Egipto", abbreviation: "EG", continent: "África", flag: "🇪🇬", language: "Árabe" }, 9 | { name: "España", abbreviation: "ES", continent: "Europa", flag: "🇪🇸", language: "Español" }, 10 | { name: "Francia", abbreviation: "FR", continent: "Europa", flag: "🇫🇷", language: "Francés" }, 11 | { name: "Alemania", abbreviation: "DE", continent: "Europa", flag: "🇩🇪", language: "Alemán" }, 12 | { name: "India", abbreviation: "IN", continent: "Asia", flag: "🇮🇳", language: "Hindi, Inglés" }, 13 | { name: "Indonesia", abbreviation: "ID", continent: "Asia", flag: "🇮🇩", language: "Indonesio" }, 14 | { name: "Irlanda", abbreviation: "IE", continent: "Europa", flag: "🇮🇪", language: "Inglés, Irlandés" }, 15 | { name: "Italia", abbreviation: "IT", continent: "Europa", flag: "🇮🇹", language: "Italiano" }, 16 | { name: "Japón", abbreviation: "JP", continent: "Asia", flag: "🇯🇵", language: "Japonés" }, 17 | { name: "Kenia", abbreviation: "KE", continent: "África", flag: "🇰🇪", language: "Inglés, Suajili" }, 18 | { name: "México", abbreviation: "MX", continent: "América del Norte", flag: "🇲🇽", language: "Español" }, 19 | { name: "Marruecos", abbreviation: "MA", continent: "África", flag: "🇲🇦", language: "Árabe, Bereber" }, 20 | { name: "Nueva Zelanda", abbreviation: "NZ", continent: "Oceanía", flag: "🇳🇿", language: "Inglés, Maorí" }, 21 | { name: "Nigeria", abbreviation: "NG", continent: "África", flag: "🇳🇬", language: "Inglés" }, 22 | { name: "Noruega", abbreviation: "NO", continent: "Europa", flag: "🇳🇴", language: "Noruego" }, 23 | { name: "Pakistán", abbreviation: "PK", continent: "Asia", flag: "🇵🇰", language: "Urdu, Inglés" }, 24 | { name: "Perú", abbreviation: "PE", continent: "América del Sur", flag: "🇵🇪", language: "Español" }, 25 | { name: "Filipinas", abbreviation: "PH", continent: "Asia", flag: "🇵🇭", language: "Filipino, Inglés" }, 26 | { name: "Polonia", abbreviation: "PL", continent: "Europa", flag: "🇵🇱", language: "Polaco" }, 27 | { name: "Portugal", abbreviation: "PT", continent: "Europa", flag: "🇵🇹", language: "Portugués" }, 28 | { name: "Reino Unido", abbreviation: "GB", continent: "Europa", flag: "🇬🇧", language: "Inglés" }, 29 | { name: "Rusia", abbreviation: "RU", continent: "Europa/Asia", flag: "🇷🇺", language: "Ruso" }, 30 | { name: "Arabia Saudita", abbreviation: "SA", continent: "Asia", flag: "🇸🇦", language: "Árabe" }, 31 | { name: "Corea del Sur", abbreviation: "KR", continent: "Asia", flag: "🇰🇷", language: "Coreano" }, 32 | { name: "Sudáfrica", abbreviation: "ZA", continent: "África", flag: "🇿🇦", language: "Inglés, Afrikáans, Zulu" }, 33 | { name: "Suecia", abbreviation: "SE", continent: "Europa", flag: "🇸🇪", language: "Sueco" }, 34 | { name: "Suiza", abbreviation: "CH", continent: "Europa", flag: "🇨🇭", language: "Alemán, Francés, Italiano" }, 35 | { name: "Tailandia", abbreviation: "TH", continent: "Asia", flag: "🇹🇭", language: "Tailandés" }, 36 | { name: "Turquía", abbreviation: "TR", continent: "Asia/Europa", flag: "🇹🇷", language: "Turco" }, 37 | { name: "Ucrania", abbreviation: "UA", continent: "Europa", flag: "🇺🇦", language: "Ucraniano" }, 38 | { name: "Emiratos Árabes Unidos", abbreviation: "AE", continent: "Asia", flag: "🇦🇪", language: "Árabe" }, 39 | { name: "Estados Unidos", abbreviation: "US", continent: "América del Norte", flag: "🇺🇸", language: "Inglés" }, 40 | { name: "Uruguay", abbreviation: "UY", continent: "América del Sur", flag: "🇺🇾", language: "Español" }, 41 | { name: "Vietnam", abbreviation: "VN", continent: "Asia", flag: "🇻🇳", language: "Vietnamita" }, 42 | { name: "Venezuela", abbreviation: "VE", continent: "América del Sur", flag: "🇻🇪", language: "Español" }, 43 | { name: "Chile", abbreviation: "CL", continent: "América del Sur", flag: "🇨🇱", language: "Español" }, 44 | { name: "Sudán", abbreviation: "SD", continent: "África", flag: "🇸🇩", language: "Árabe, Inglés" }, 45 | { name: "Israel", abbreviation: "IL", continent: "Asia", flag: "🇮🇱", language: "Hebreo, Árabe" }, 46 | { name: "Bangladesh", abbreviation: "BD", continent: "Asia", flag: "🇧🇩", language: "Bengalí" }, 47 | { name: "Singapur", abbreviation: "SG", continent: "Asia", flag: "🇸🇬", language: "Inglés, Chino, Malayo, Tamil" }, 48 | { name: "Grecia", abbreviation: "GR", continent: "Europa", flag: "🇬🇷", language: "Griego" }, 49 | { name: "Finlandia", abbreviation: "FI", continent: "Europa", flag: "🇫🇮", language: "Finés, Sueco" }, 50 | { name: "Austria", abbreviation: "AT", continent: "Europa", flag: "🇦🇹", language: "Alemán" }, 51 | { name: "Bélgica", abbreviation: "BE", continent: "Europa", flag: "🇧🇪", language: "Holandés, Francés, Alemán" }, 52 | { name: "Hungría", abbreviation: "HU", continent: "Europa", flag: "🇭🇺", language: "Húngaro" } 53 | ]; 54 | 55 | -------------------------------------------------------------------------------- /entrenamiento/Ejercicios Entrenamiento 4 - pokemons/Ejercicios Entrenamiento 4 - pokemons.js: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "nombre": "Bulbasaur", 4 | "poderes": [ 5 | { 6 | "nombre": "Placaje", 7 | "energia": 10, 8 | "usos": 4 9 | }, 10 | { 11 | "nombre": "Látigo Cepa", 12 | "energia": 15, 13 | "usos": 3 14 | }, 15 | { 16 | "nombre": "Hoja Afilada", 17 | "energia": 20, 18 | "usos": 3 19 | } 20 | ] 21 | }, 22 | { 23 | "nombre": "Charmander", 24 | "poderes": [ 25 | { 26 | "nombre": "Arañazo", 27 | "energia": 10, 28 | "usos": 4 29 | }, 30 | { 31 | "nombre": "Lanzallamas", 32 | "energia": 30, 33 | "usos": 2 34 | }, 35 | { 36 | "nombre": "Dragoaliento", 37 | "energia": 25, 38 | "usos": 3 39 | } 40 | ] 41 | }, 42 | { 43 | "nombre": "Squirtle", 44 | "poderes": [ 45 | { 46 | "nombre": "Pistola Agua", 47 | "energia": 15, 48 | "usos": 4 49 | }, 50 | { 51 | "nombre": "Burbuja", 52 | "energia": 10, 53 | "usos": 4 54 | }, 55 | { 56 | "nombre": "Placaje", 57 | "energia": 10, 58 | "usos": 2 59 | } 60 | ] 61 | }, 62 | { 63 | "nombre": "Pikachu", 64 | "poderes": [ 65 | { 66 | "nombre": "Impactrueno", 67 | "energia": 20, 68 | "usos": 3 69 | }, 70 | { 71 | "nombre": "Ataque Rápido", 72 | "energia": 10, 73 | "usos": 4 74 | }, 75 | { 76 | "nombre": "Bola Voltio", 77 | "energia": 25, 78 | "usos": 2 79 | } 80 | ] 81 | } 82 | ] 83 | 84 | -------------------------------------------------------------------------------- /entrenamiento/Ejercicios Entrenamiento 4 - pokemons/bolbasaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spizzirri/programacionwebi-base/a64f5feb0a83f9a140f9df65a8abc5271c4d113e/entrenamiento/Ejercicios Entrenamiento 4 - pokemons/bolbasaur.png -------------------------------------------------------------------------------- /entrenamiento/Ejercicios Entrenamiento 4 - pokemons/charmander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spizzirri/programacionwebi-base/a64f5feb0a83f9a140f9df65a8abc5271c4d113e/entrenamiento/Ejercicios Entrenamiento 4 - pokemons/charmander.png -------------------------------------------------------------------------------- /entrenamiento/Ejercicios Entrenamiento 4 - pokemons/pikachu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spizzirri/programacionwebi-base/a64f5feb0a83f9a140f9df65a8abc5271c4d113e/entrenamiento/Ejercicios Entrenamiento 4 - pokemons/pikachu.png -------------------------------------------------------------------------------- /entrenamiento/Ejercicios Entrenamiento 4 - pokemons/squartle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spizzirri/programacionwebi-base/a64f5feb0a83f9a140f9df65a8abc5271c4d113e/entrenamiento/Ejercicios Entrenamiento 4 - pokemons/squartle.png -------------------------------------------------------------------------------- /final/Final_00.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spizzirri/programacionwebi-base/a64f5feb0a83f9a140f9df65a8abc5271c4d113e/final/Final_00.pdf -------------------------------------------------------------------------------- /final/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |107 | Pokemon seleccionado 108 |
109 | 110 |Energia: 100%
81 |Energia: 100%
91 |