-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8"/>
<title>To-Do List</title>
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<h2 id="clock"></h2>
<form id="login-form" class="hidden">
<input
required
maxlength="15"
minlength="2"
type="text"
placeholder="What's your Name?"
/>
<input type="submit" value="Log in"/>
</form>
<h1 id="greeting" class="hidden"></h1>
<form id="todo-form">
<input required type="text" placeholder="✏️ Today I Do" />
</form>
<ul id="todo-list"></ul>
<div id="quote">
<span></span>
<span></span>
</div>
<div id="weather">
<span></span>
<span></span>
</div>
<script src="js/greeting.js"></script>
<script src="js/clock.js"></script>
<script src="js/quotes.js"></script>
<script src="js/background.js"></script>
<script src="js/todo.js"></script>
<script src="js/weather.js"></script>
</body>
</html>