-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.11 KB
/
index.html
File metadata and controls
27 lines (27 loc) · 1.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Planner</title>
<link rel = 'icon' href = "tab-icon.png">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
<link rel = "stylesheet" href="style.css">
</head>
<body>
<div class="side_container">
<button type="button" class="add_toBucket">Add to Bucket</button>
</div>
<div class="main_container"></div>
<div class="division division1">
Priority 1 Tasks<hr></hr><div class = "inside div1"></div></div>
<div class="division division2">
Priority 2 Tasks<hr></hr><div class = "inside div2"></div></div>
<div class="division division3">
Priority 3 Tasks<hr></hr><div class = "inside div3"></div></div>
<div class="division division4">
Completed Tasks<hr></hr><div class = "inside div4"></div></div>
<script src="script.js" defer></script>
</body>
</html>