Skip to content
Permalink
e30991f443
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
41 lines (38 sloc) 912 Bytes
<!doctype html>
<!-- <html manifest="/website.appcache" lang="en"></html> -->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Simple SPA</title>
<meta name="description" content="Simple SPA">
<meta name="author" content="Mark J Tyers">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<script type="module" src="js/script.js"></script>
</head>
<body>
<header>
<h1></h1>
<p>You are currently <strong>online</strong></p>
</header>
<nav>
<ul>
<li><a href="#login">Log In</a></li>
<li><a href="#logout">Log out</a></li>
<li><a href="#register">Register</a></li>
<li><a href="#home">Foo</a></li>
</ul>
</nav>
<aside class="hidden">
<p>XXX</p>
</aside>
<main>
</main>
<footer>
<p id="device"></p>
<p id="resolution"></p>
<p id="connectivity"></p>
<p id="location"></p>
</footer>
</body>
</html>