-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (37 loc) · 1.1 KB
/
Copy pathindex.html
File metadata and controls
43 lines (37 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
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Momentum Clone</title>
</head>
<body>
<div class="weather-area">
<div><span class="js-weather"></span></div>
</div>
<div class="clock-area">
<div class="js-clock"><h1></h1></div>
</div>
<div class="name-area">
<form class="js-form form">
<input type="text" placeholder="What is your name?" />
</form>
<h4 class="js-greetings greetings"></h4>
</div>
<div class="to-do-list-area">
<form class="js-toDoForm toDoForm">
<input type="text" placeholder="Write a to do" />
</form>
<ul class="js-toDoList"></ul>
</div>
<div class="photo-src-description-area">
<h5>Photos from Splash.com</h5>
</div>
<script src="clock.js"></script>
<script src="grettings.js"></script>
<script src="todo.js"></script>
<script src="background.js"></script>
<script src="weather.js"></script>
</body>
</html>