15 lines
233 B
HTML
15 lines
233 B
HTML
<html>
|
|
<head><title>TODO List</title></head>
|
|
<body>
|
|
<h1>TODO</h1>
|
|
|
|
<h2>Items</h2>
|
|
<ul id="items"></ul>
|
|
|
|
|
|
<h2>Adding an item</h2>
|
|
<input type="text" id="next-item"/>
|
|
<input type="button" id="add-button" value="Add!"/>
|
|
</body>
|
|
</html>
|