Last active
February 2, 2016 15:45
-
-
Save owenroberts/7d477c7007cfe14b6681 to your computer and use it in GitHub Desktop.
A basic web page.
This file contains hidden or 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> | |
<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