Skip to content

Instantly share code, notes, and snippets.

@agustinpfs
Last active July 6, 2020 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agustinpfs/99716e0577971726dad5d688ae8d5b3b to your computer and use it in GitHub Desktop.
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>
<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