-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (79 loc) · 2.39 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!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" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/reset.css" />
<title>Todo List</title>
<link
href="https://fonts.googleapis.com/css2?family=Gasoek+One&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Orbit&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
</head>
<body>
<!-- Background -->
<video id="videoBG" autoplay muted loop>
<source src="video/background.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
<div class="split-box">
<div class="left">
<p class="title">Plan your work, work your plan!</p>
<!--Clock-->
<h2 id="clock">00:00:00</h2>
<!--//Clock-->
<div id="quote">
<span></span>
<br />
<br />
<span></span>
</div>
</div>
<div class="right">
<!--Name form-->
<form class="hidden" id="login-form">
<input
required
maxlength="15"
type="text"
placeholder="What is your name?"
/>
<button>Log In</button>
</form>
<!--//Name form-->
<!-- todo form-->
<h1 id="greeting" class="hidden"></h1>
<form id="todo-form">
<input
type="text"
placeholder="Write a To do and Press Enter"
required
/>
</form>
<ul id="todo-list"></ul>
<!-- //todo form-->
</div>
<!-- <div id="weather">
<span></span>
<span></span>
</div> -->
</div>
<script src="js/greetings.js"></script>
<script src="js/clock.js"></script>
<script src="js/quotes.js"></script>
<script src="js/todo.js"></script>
<!-- <script src="js/weather.js"></script> -->
</body>
</html>