-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
51 lines (42 loc) · 1.67 KB
/
todo.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
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/index.css"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<div class="box" style="position:relative">
<a href = "index.html"><button type="button" class="btn btn-light" style="position:absolute; top:10px; left:20px;">back to simsimi</button></a>
</div>
<div class="box">
<div class="js-clock">
<h1>00:00</h1>
</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">
<input type="text" placeholder="write a thing to do" />
</form>
<div class="little">
</div>
<ul class="js-toDoList">
</ul>
</div>
<div class="box">
</div>
<div class="box" style="height=30%">
<span class="js-weather"></span>
</div>
<script type="text/javascript" src="clock.js"></script>
<script type="text/javascript" src="greeting.js"></script>
<script type="text/javascript" src="todo.js"></script>
<script type="text/javascript" src="bg.js"></script>
<script type="text/javascript" src="weather.js"></script>
</body>
</html>