Skip to content

Instantly share code, notes, and snippets.

@EssenceOfChaos
Created November 30, 2018 06:49
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 EssenceOfChaos/78804d7670ae2e1a5dd5099686f39598 to your computer and use it in GitHub Desktop.
Save EssenceOfChaos/78804d7670ae2e1a5dd5099686f39598 to your computer and use it in GitHub Desktop.
HTML example - part 1
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CSS Specificity</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1 class="heading">Heading tag</h1>
<div class="tagline" id="witty">
<p>This is a witty saying!</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment