-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 874 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 874 Bytes
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" dir="ltr">
<head>
<meta charset="utf-8">
<title>Task List</title>
<meta name="description" content="A page for creating and editing task lists.">
<link rel="stylesheet" href="./css/index.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200&family=Poppins:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header class="page-header">
<h1 id="page-title">Task List</h1>
</header>
<main class="page-body">
<div class="container" id="button-container">
<button id="task-list-adder" type="button" name="add-task-list-container">Add Task List Container</button>
</div>
<div class="container" id="task-list-container">
</div>
</main>
<script type="text/javascript" src="./js/index.js"></script>
</body>
</html>