-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.1 KB
/
Copy pathindex.html
File metadata and controls
37 lines (36 loc) · 1.1 KB
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
<!DOCTYPE html>
<html>
<head>
<title>ToDoList</title>
<meta charset="utf-8"/>
<link rel="stylesheet"
href="index.css"/>
</head>
<body>
<div style="text-align: right">
<span class="js-weather"></span>
</div>
<div class="js-clock">
<h1>00:00</h1>
</div>
<form class="js-form form">
<input class="js-inputName" type="text" placeholder="What is your name?">
</form>
<h4 class = "js-greetings greetings"></h4>
<form class="js-toDoForm">
<input class="js-inputList" type="text" placeholder="Write a to do">
</form>
<center>
<div style="width: 55%">
<ul class="js-toDoList">
</ul>
</div>
</center>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<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>