-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My HTML test Page.</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div>
<span class="js-weather"></span>
</div>
<div id="quote">
<span></span>
<span></span>
</div>
<section class="center">
<div class="js-clock">
<label>00:00</label>
</div>
<div>
<form class="js-form form">
<input type="text" placeholder="What is your name?">
</form>
</div>
</section>
<lable class="js-greetings center"></lable>
<form class="js-toDoForm center">
<input type="text" placeholder="Write a to Do">
</form>
<div>
<ul class="js-toDoList"></ul>
</div>
<script src="./js/clock.js"></script>
<script src="./js/greeting.js"></script>
<script src="./js/todo.js"></script>
<script src="./js/bg.js"></script>
<script src="./js/weather.js"></script>
<script src="./js/quote.js"></script>
</body>
</html>