Created
February 18, 2016 00:46
-
-
Save switchflip/a554f71f32c0b2b0a873 to your computer and use it in GitHub Desktop.
Introduction to HTML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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