Last active
July 6, 2020 14:57
-
-
Save agustinpfs/99716e0577971726dad5d688ae8d5b3b to your computer and use it in GitHub Desktop.
Lugares donde declarar estilos CSS. 1. En el head del HTML dentro la etiqueta <style>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Ejemplo css</title> | |
<style> | |
h1{ | |
color:red | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Tíulo principal</h1> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment