Skip to content

Instantly share code, notes, and snippets.

@owenroberts
Last active February 2, 2016 15:45
Show Gist options
  • Save owenroberts/7d477c7007cfe14b6681 to your computer and use it in GitHub Desktop.
Save owenroberts/7d477c7007cfe14b6681 to your computer and use it in GitHub Desktop.
A basic web page.
<!doctype html>
<html>
<head>
<title>My Website</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<meta charset="utf-8" />
</head>
<body>
<h1>My Website</h1>
<p>This is my <em>amazing</em> website.</p>
<p><a href="https://www.youtube.com/watch?v=tntOCGkgt98" target="blank">This is a link</a>.</p>
<p>This is a photo of a cat:</p>
<img src="https://i.ytimg.com/vi/tntOCGkgt98/maxresdefault.jpg" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment