-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (65 loc) · 2 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
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<title>Fianlly Projcet</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./src/style.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css"
/>
</head>
<body>
<div class="container">
<div class="nameContainer">
<div class="modal">
<div class="profile">
<i class="fas fa-user fa-4x"></i>
</div>
<form class="userForm">
<input type="text" class="addUser" placeholder="What is your name?"/>
</form>
<label class="userName hide"></label>
<div class="joinBtn hide">
<i class="fas fa-arrow-right fa-3x"></i>
</div>
</div>
</div>
<div class="weatherContainer hide">
<div>
<i class="fas fa-cloud-rain fa-3x"></i>
<i class="fas fa-sun fa-3x hide"></i>
<strong class="temp">20 °</strong>
</div>
<div class="locationBox">
<i class="fas fa-map-marker-alt fa-lg"></i>
<h3 class="location">location</h3>
</div>
<div class="todoIcon">
<i class="fas fa-clipboard-list fa-4x" id="icon"></i>
<label for="icon">Todo</label>
</div>
</div>
<div class="todoContainer hide">
<i class="fas fa-times" id="closeTodo"></i>
<form class="todoForm">
<input type="text" class="addText" placeholder="Add task" />
</form>
<div class="listContainer">
<div class="todo">
<h2>Pending</h2>
<ul class="todoList"></ul>
</div>
<div class="finish">
<h2>Finished</h2>
<ul class="finishList"></ul>
</div>
</div>
</div>
</div>
<script src="./src/index.js"></script>
<script src="./src/background.js"></script>
<script src="./src/location.js"></script>
<script src="./src/presistance.js"></script>
</body>
</html>