diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f673a71 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5502 +} \ No newline at end of file diff --git a/fondo.jpg b/fondo.jpg new file mode 100644 index 0000000..d7798cf Binary files /dev/null and b/fondo.jpg differ diff --git a/index.html b/index.html index e69de29..68a64a4 100644 --- a/index.html +++ b/index.html @@ -0,0 +1,18 @@ + + +
+ + + +Mi nombre es Israel Hernández Vázquez
+Vamos a inicir con CSS_BASICS... ¡ Mi primer Hola Mundo en HTML!
+ + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..5287cfe --- /dev/null +++ b/style.css @@ -0,0 +1,24 @@ +p, h3{ + color: red; +} + +h2{ + height: 100px; + width: 50%; + background-color: lightblue; +} + +h1 { + background-image: url("./fondo.jpg"); + color: yellow; +} + +p{ + border-width: 7px; + border-style: dotted; +} + +h3{ + padding: 30px; + margin: 1em 35% +} \ No newline at end of file