-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.16 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
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tasks To Do</title>
<link rel="icon" href="/list-icon.ico" type="image/x-icon" />
<link rel="stylesheet" href="styles/style.css" />
<script src="scripts/app.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Ultra&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="header" class="center-contents">
<div id="header-text">
<h1>To <span class="blue">Do</span></h1>
</div>
</div>
<div id="main-content">
<div id="add-task" class="grid-center center-contents">
<input type="text" placeholder="Add a Task" /><button
id="add-task-button"
>
<img src="pictures/plus-icon.png" />
</button>
</div>
<div id="tasks-todo">
<!-- Task list goes here -->
</div>
</div>
</body>
</html>