-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.04 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>
<title>SOMETHING CLOCK</title>
<link rel="stylesheet" href="index.css"/>
<meta charset="utf-8">
</head>
<body>
<span class="js-weather"></span>
<span class="js-reset">Reset</span>
<div class="container">
<div class="js-clock">
<h1>00:00</h1>
</div>
<form class="js-form form">
<input type="text" placeholder="Type your name here" />
</form>
<h4 class="js-grettings grettings"></h4>
<form class="js-toDoForm">
<input type="text" placeholder="write a To Do here" />
</form>
<ul class="js-toDoList">
</ul>
</div>
<div class="copycontainer">
<a class="copyright" href="https://github.com/JakeKang">Jake_K95</a>
</div>
<spanc class="js-weather"></spanc>
<script src="clock.js"></script>
<script src="gretting.js"></script>
<script src="todo.js"></script>
<script src="bg.js"></script>
<script src="weather.js"></script>
<script src="reset.js"></script>
</body>
</html>