Skip to content

Instantly share code, notes, and snippets.

@agustinpfs
Last active July 12, 2020 14:01
Show Gist options
  • Save agustinpfs/b4ad567e38c472299600050867d4881c to your computer and use it in GitHub Desktop.
Save agustinpfs/b4ad567e38c472299600050867d4881c to your computer and use it in GitHub Desktop.
Selector CSS de etiqueta
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Selector de etiqueta</title>
<style>
h1 {
color:red;
font-size: 1.5rem
}
p {
color: blue
}
</style>
</head>
<body>
<h1>Hola H1</h1>
<p>Hola párrafo</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment