diff --git a/Practicas/Practicas JS/Introduccion/estilos.css b/Practicas/Practicas JS/Introduccion/estilos.css new file mode 100644 index 0000000..9fa05d6 --- /dev/null +++ b/Practicas/Practicas JS/Introduccion/estilos.css @@ -0,0 +1,46 @@ +@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); + +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + font-family: 'Poppins', sans-serif; + min-height: 100vh; + width: 100%; + background: #eaeaea; + color: #000; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} + +h1 { + font-size: 80px; +} + +h2 { + font-size: 40px; + font-weight: normal; + margin-bottom: 40px; + color: #848484; +} + +button { + border: none; + background: #2553df; + font-family: 'Poppins', sans-serif; + font-size: 22px; + cursor: pointer; + border-radius: 10px; + color: #fff; + padding: 14px 28px; + margin-bottom: 20px; +} + +button:hover { + background: #1942be; +} diff --git a/Practicas/Practicas JS/Introduccion/holaMundo.html b/Practicas/Practicas JS/Introduccion/holaMundo.html new file mode 100644 index 0000000..3eb4eb4 --- /dev/null +++ b/Practicas/Practicas JS/Introduccion/holaMundo.html @@ -0,0 +1,40 @@ + + + + + + + + Mi primera página web con Javascript + + + + + + + +

Hola Mundo!

+ + + + diff --git a/Practicas/Practicas JS/Introduccion/holaMundo.js b/Practicas/Practicas JS/Introduccion/holaMundo.js new file mode 100644 index 0000000..f77fd07 --- /dev/null +++ b/Practicas/Practicas JS/Introduccion/holaMundo.js @@ -0,0 +1 @@ +alert('Hola mundo, desde archivo externo');