-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 2.16 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
<!DOCTYPE html>
<html lang="ko">
<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">
<title>Time To Do!</title>
</head>
<body>
<div class="container">
<h2 id="clock">00:00:00</h2>
<form id="login-form" class="hidden">
<input type="text" required maxlength="15" minlength="3" placeholder="What is your name?" />
<button>Log In</button>
</form>
<h1 id="greeting" class="hidden"></h1>
<div id="weather">
<span></span>
<span></span>
</div>
<div id="quote" class="hidden">
<span></span>
<span></span>
</div>
<img src="./img/quote.png" alt="quote" id="quote-balloon" class="hidden">
<div id="background"></div>
<div id="todo-section">
<div id = dino>
<img src="./img/dino2.png" alt="dinosaur" id="dino2" class="hidden">
<img src="./img/dino.gif" alt="dinosaur" id="dinogif">
<img src="./img/dinodown.gif" alt="dinosaur" id="dinodowngif" class="hidden">
</div>
<div class="to-do">
<p id="click">click! >></p>
<p id="click2">click! >></p>
<h3>To Do List</h3>
<form>
<input type="text" placeholder="Write and press enter" required>
<button id = "addbtn">Add!</button>
</form>
<ul></ul>
</div>
<div class="info">
<p> BGM : Jeremy Blake - 'Powerup!' / Thanks for visiting ☺</p>
</div>
<img src="./img/music-note.gif" alt="music icon" id="music-note">
<audio src="./bgm/Jeremy Blake_Powerup!.mp3"></audio>
</div>
</div>
<script src="./js/greetings.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>
<script src="./js/dino.js"></script>
<script src="./js/desert.js"></script>
<script src="./js/bgm.js"></script>
</body>
</html>