22 lines
594 B
HTML
22 lines
594 B
HTML
<!doctype HTML>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="reset.css">
|
|
<link rel="stylesheet" type="text/css" href="main.css">
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
|
|
<script src="main.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<nav id="top">
|
|
<h1>To Do List</h1>
|
|
</nav>
|
|
<form id="todoform" action="#" method="post">
|
|
<input type="text" id="todo" name="todo" placeholder="Enter Your Todo" />
|
|
<input type="submit" value="Add" id="addTodo" />
|
|
</form>
|
|
<div id="printout"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|