Skip to content
Permalink
4b9bdf559b
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
23 lines (20 sloc) 504 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ToDo List</title>
<meta name="description" content="ToDo List">
<meta name="author" content="Mark J Tyers">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<h1>ToDo List</h1>
<form onkeydown="return event.key != 'Enter';">
<input name="item" type="text" autofocus />
<input type="submit" value="add" />
<table></table>
<ol></ol>
</form>
</body>
</html>