Skip to content

Instantly share code, notes, and snippets.

@agustinpfs
Last active July 6, 2020 14:54
Show Gist options
  • Save agustinpfs/777ed37a8701c6d63d0dc3052fc26434 to your computer and use it in GitHub Desktop.
Save agustinpfs/777ed37a8701c6d63d0dc3052fc26434 to your computer and use it in GitHub Desktop.
Declaraciones CSS
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Declaraciones css</title>
<link rel="stylesheet" href="style.css">
<!-- url de gist "style.css": https://gist.github.com/agustinpfs/bc6f154f9be9b4c0a6844335ff5f490e -->
<style>
h1 {
background-color: cyan;
}
</style>
</head>
<body>
<!-- <h1 style="background-color: yellow">Hola CSS desde la etiqueta dentro del body</h1> -->
<h1>Hola CSS desde la etiqueta style en el head</h1>
<!-- <h1>Hola CSS desde archivo externo</h1> -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment