Skip to content
Permalink
2b870277a8
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
42 lines (39 sloc) 1.01 KB
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Contacts</title>
<meta name="description" content="Contacts">
<meta name="author" content="Mark J Tyers">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<main>
<header>
<h1>Contacts</h1>
</header>
<nav>
<h2>My Contacts</h2>
<ol>
<li>Mr Ted</li>
<li>Sir Moo</li>
</ol>
</nav>
<article>
<form>
<input type="hidden" name="key" />
<p><label for="name">Name</label>
<input name="name" type="text" autofocus /></p>
<p><label for="email">Email</label>
<input name="email" type="email" /></p>
<p>
<button id="submit" type="submit">Add Record</button>
<button id="delete" type="submit">Delete Record</button>
</p>
</form>
<table></table>
</article>
</main>
</body>
</html>