-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1016 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (32 loc) · 1016 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title> Momentum </title>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<section class="center">
<div class="js-clock h1Clock">
<h1 class="h1Text">00:00</h1>
</div>
<form class="js-form form">
<input type="text" class="nameInput" placeholder="Write your name" />
</form>
<h4 class="js-greetings greetings"></h4>
<form class="js-toDoForm ">
<input type="text" class="toDoInput" placeholder="Write a to-do" />
</form>
</section>
<ul class="js-toDoList ulList"></ul>
<div class="js-weather weather">
<span ></span>
</div>
<h4 class="js-greetings greetings"></h4>
<script src="javascript/clock.js"></script>
<script src="javascript/greeting.js"></script>
<script src="javascript/todo.js"></script>
<script src="javascript/bg.js"></script>
<script src="javascript/weather.js"></script>
</body>
</html>