Skip to content

Instantly share code, notes, and snippets.

@switchflip
Created February 18, 2016 00:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save switchflip/a554f71f32c0b2b0a873 to your computer and use it in GitHub Desktop.
Save switchflip/a554f71f32c0b2b0a873 to your computer and use it in GitHub Desktop.
Introduction to HTML
<!DOCTYPE html>
<html>
<head>
<!-- Add meta tags in the head -->
<meta charset="utf-8">
<title>Cats</title>
</head>
<body>
<h1 style="color:#A37417; background-color:#ccc">Cats and stuff</h1>
<p>Cats are super awesome and do stuff. More on stuff later.</p>
<a href="http://www.catster.com/">Best Cat Website Ever!!!1!</a>
<a href="#">Link to nowhere</a>
<a href="http://www.google.com/" title="Link to google" target="_blank">Google</a>
<h2>Cats</h2>
<div style="background-color:#452345;">
<h3>Brown Cat</h3>
<h4>Orange Cat</h4>
<h5>Tabby</h5>
</div>
<h6>Stray</h6>
<h2>Stuffs</h2>
<figure>
<figcaption> Refer to figure 1: Cat with universe in eyes...</figcaption>
<img src="stuff.gif" alt="A cat with like the universe in its eyes"/>
</figure>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment