diff --git a/README.md b/README.md index 9c0787d..656adf2 100644 --- a/README.md +++ b/README.md @@ -45,4 +45,14 @@ puedan verificar ## Recursos extras -- [CSS Reference from MDN](https://developer.mozilla.org/en-US/docs/Web/CSS) \ No newline at end of file +- [CSS Reference from MDN](https://developer.mozilla.org/en-US/docs/Web/CSS) + + + + + + +- Establece cualquier imagen como fondo para h1. +- Establece un borde punteado de 7 px alrededor de todos los párrafos. +- .Establece el relleno de h3 a 30px. +- Usa el margen para alinear al centro la etiqueta h3. \ No newline at end of file diff --git a/estilos.css b/estilos.css new file mode 100644 index 0000000..6cf4802 --- /dev/null +++ b/estilos.css @@ -0,0 +1,30 @@ +p{ + color:red; +} +h3{ + color: red; + padding-top: 30px; + padding-bottom: 30px; + padding-left: 30px; + padding-right: 30px; + margin-left: 50%; + margin-right: 50%; +} +h2{ + background-color: skyblue; + font-size: 100px; + width: 50%; +} +h1{ + color: yellow; +} +.imageBackground{ + background-image: url(https://i.pinimg.com/originals/c3/cd/fe/c3cdfe82c8b89c84409e063b310e8c41.jpg); +} +.box{ + border: dotted; + margin-top: 7px; + margin-bottom: 7px; + margin-left: 7px; + margin-right: 7px; +} \ No newline at end of file diff --git a/index.html b/index.html index e69de29..326fb6e 100644 --- a/index.html +++ b/index.html @@ -0,0 +1,21 @@ + + + + + EJERCICIO 1 HTML Y CSS | Vicks + + + + +
+

H1 EJERCICIO 1

+
+

H2 Etiqueta con h2

+

H3 Etiqueta con h3

+
+

Esta es una etiqueta de parrafo <p>

+

Esta es otra etiqueta de parrafo <p>

+
+ + + \ No newline at end of file