-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (58 loc) · 1.86 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Homepage</title>
<link rel="shortcut icon" href="/Assests/favicon.png" type="image/x-icon" />
<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=Chivo&family=Kanit&display=swap"
rel="stylesheet"
/>
<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=Marhey:wght@500&display=swap"
rel="stylesheet"
/>
</head>
<body class="hp">
<nav id="navigation">
</nav>
<!-- Tasks will be added here -->
<div id="taskContainer"></div>
<!-- Add Task Modal -->
<form class="task-modal" id="form">
<div class="ts-add">
<label for="text" id="add-ts">Task</label>
<br />
<input type="text" name="" id="ts-text" />
<br />
<label for="text" id="add-ds">Description</label>
<br />
<textarea type="text" name="" id="ts-des"></textarea>
<div id="tp-btn">
<button type="button" id="close-btn" onclick="closeBtn()">
Close
</button>
<button type="submit" id="submit-btn">Save</button>
</div>
</div>
</form>
<!-- Homepage footer -->
<footer class="hp-btn">
<p class="CRtask">Create Task</p>
<a onclick="addTask()">
<img
src="Assests/taskadd-icon.png"
alt="task-add"
class="taskadd-icon"
/>
</a>
</footer>
<script src="script.js"></script>
</body>
</html>