forked from codepo8/simple-to-do
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (23 loc) · 815 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TODO app</title>
<link rel="stylesheet" href="styles/base.css">
<link rel="stylesheet" href="styles/to-do-styles.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📋</text></svg>">
</head>
<output></output>
<body>
<form>
<div class="searchbar">
<label for="task">Tasks:</label>
<input id="task" autocomplete="off" type="text" placeholder="What do you want to do" pattern="[a-z|A-Z|0-9| ]+">
<input type="submit" value="send">
</div>
<ul id="tasks"></ul>
</form>
<script src="simple-to-do.js"></script>
</body>
</html>