Skip to content

Instantly share code, notes, and snippets.

View owenroberts's full-sized avatar

Owen Roberts owenroberts

View GitHub Profile
@owenroberts
owenroberts / basic.html
Last active February 2, 2016 15:45
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>