-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (60 loc) · 2.11 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
<!DOCTYPE html>
<html>
<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.css">
<title>Juha's TodoList</title>
<style>
html,
body {
margin: 0;
}
</style>
</head>
<body>
<div id="wrap">
<h1 id="clock"></h1>
<div class="hidden" id="login-form">
<div class="loginText">Login</div>
<div class="loginBox">
<form id="login-input">
<input required maxlength="15" type="text" placeholder="What's your name?" />
<input type="submit" value="Log In" />
</form>
</div>
</div>
<h2 id="greeting" class="hidden"></h2>
<div id="weather" class="hidden">
<button id="weatherbtn">
<font size="3">Check weather!</font>
</button>
<div>
<p style="font-size:25px"></p>
<p style="font-size: 40px;font-family: 'IM Fell English SC', serif; padding-left:33px;"></p>
<p style="font-size: 23px"></p>
</div>
</div>
<span id="todolist" class="hidden">
<p style="font-family:'Architects Daughter', cursive;">
<font size="6"><b>ToDo List</b></font>
</p>
<form id="todo-form">
<input type="text" placeholder="Write a To Do and Press Enter" required />
</form>
<ul id="todo-list"></ul>
</span>
<div id="quotes" class="hidden">
<p style="font-family:'Architects Daughter', cursive; font-size:medium;"></p>
<p style="font-family:'Architects Daughter', cursive; font-size:20px;"></p>
</div>
</div>
<script src="js/weather.js"></script>
<script src="js/quotes.js"></script>
<script src="js/background.js"></script>
<script src="js/login.js"></script>
<script src="js/clock.js"></script>
<script src="js/todo.js"></script>
</body>
</html>