Skip to content
Permalink
master
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
<!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="manifest" href="manifest.json">
<meta name="theme-color" content="white"/>
<meta http-equiv="ScreenOrientation" content="autoRotate:disabled">
<link rel="apple-touch-icon" href="images/icon-1024.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/icon-152.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/icon-180.png">
<link rel="apple-touch-icon" sizes="167x167" href="images/icon-167.png">
<meta name="description" content="Nursing collaborative simulation game for Coventry University.">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Hello World">
<meta name="msapplication-TileImage" content="images/hello-icon-144.png">
<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>