-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 931 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<link rel="stylesheet" href="index.css" />
</head>
<body>
<span class="js-weather weather font"></span>
<div class="content">
<div class="center">
<div class="js-clock">
<h1 class="time font">00:00</h1>
</div>
<form class="js-form form">
<input type="text" placeholder="What is your name?" />
</form>
<h4 class="js-greetings greetings font"></h4>
<form class="js-toDoForm">
<input type="text" placeholder="Write a to do" />
</form>
</div>
<div class="todos">
<ul class="js-toDoList font"></ul>
</div>
</div>
<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>
</body>
</html>