You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
518 B
31 lines
518 B
<html>
|
|
<head>
|
|
<title>To Do</title>
|
|
<link rel="stylesheet" type="text/css" href="css/style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div id="container">
|
|
|
|
<div id="header">
|
|
<h1>What To Do</h1>
|
|
</div>
|
|
|
|
<div id="input-container">
|
|
<input id="input-box" type="text"></input>
|
|
<button id="submit">ADD</button>
|
|
</div>
|
|
|
|
<div id="to-do-list">
|
|
<h3>things to do</h3>
|
|
</div>
|
|
|
|
<div id="completed">
|
|
<h3>things that are done</h3>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript" src="js/app.js"></script>
|
|
</body>
|
|
</html> |