-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 888 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
<!DOCTYPE html>
<html>
<head>
<title>Simple Crome App</title>
<meta charset="UTF-8" />
</head>
<body>
<link rel="stylesheet" type="text/css" href="style.css">
<span class="js-weather"></span>
<div class="js-block">
<div class="js-clock">
<div class="js-weeks"></div>
<div class="js-time">00:00</div>
</div>
<form class="js-form form">
<input type="text" placeholder="What is your name?" />
</form>
<h4 class="js-greetings greetings"></h4>
<form class="js-toDoForm greetings">
<input type="text" placeholder="Write a to do" />
</form>
<ul class="js-toDoList"></ul>
</div>
<script src="clock.js"></script>
<script src="greeting.js"></script>
<script src="todo.js"></script>
<script src="bg.js"></script>
<script src="weather.js"></script>
</body>
</html>