-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
33 lines (33 loc) · 1.02 KB
/
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
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="Description" content="ToDo App" />
<link
href="https://fonts.googleapis.com/css?family=Coming+Soon|Raleway:500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style.css" />
<title>TO-DO</title>
</head>
<body>
<section id="outer-container">
<h1 class="heading">TO-DO</h1>
<div id="todo-container"><ul></ul></div>
<form id="add-todo">
<input
aria-label="Enter a description of your to-do"
type="text"
name="description"
value=""
class="textbox"
/>
<input type="submit" name="" value="Submit" class="submit-button" />
</form>
</section>
</body>
<script type="text/javascript" src="./logic.js"></script>
<script type="text/javascript" src="./dom.js"></script>
</html>