-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (41 loc) · 1.53 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
<!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="icon" type="image/x-icon" href="imgs/gitblog_me.png" />
<link rel="stylesheet" href="css/style.css" />
<title>Momentum</title>
</head>
<body>
<div id="main-container">
<h2 id="clock"></h2>
<form action="" id="login-form" class="hidden">
<input type="text" required maxlength="15" placeholder="name..." />
</form>
<h1 class="hidden"></h1>
<form id="todo-form" class="hidden">
<input type="text" placeholder="write TODO list..." required />
</form>
<ul id="todo-list" class="hidden"></ul>
<div id="quote" class="hidden">
<span class="quote-author"></span>
<span class="kr-quote"></span>
<span class="en-quote"></span>
</div>
<div id="weather" class="hidden">
<span></span>
<span></span>
</div>
</div>
<img id="background-image" style="width: 100vw; height: 100vh" src="#" alt="can't found!!" />
<script src="js/greeting.js"></script>
<script src="js/clock.js"></script>
<script src="js/quotes.js"></script>
<script src="js/backgroundImg.js"></script>
<script src="js/todo.js"></script>
<script src="js/weather.js"></script>
<script src="https://kit.fontawesome.com/fdc3244e74.js" crossorigin="anonymous"></script>
</body>
</html>