-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
44 lines (36 loc) · 1.17 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
<!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">
<meta name="author" content="Nicolás Serrano Arévalo" />
<title>Momonton</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<section class="center">
<div class="js-clock clock">
<h3 class="clock__text">00:00</h3>
</div>
<div class="js-name name"></div>
<div>
<form class="js-to-do to-do">
<input class="js-add-to-do to-do__add-to-do" placeholder="Write a To Do here" type="text" />
</form>
<ul class="js-list list"></ul>
</div>
</section>
<div class="js-location location">
<span class="location__text"></span>
</div>
<div class="js-weather weather">
<span class="weather__text"></span>
</div>
<script src="js/bg.js"></script>
<script src="js/clock.js"></script>
<script src="js/weather.js"></script>
<script src="js/greeting.js"></script>
<script src="js/toDo.js"></script>
</body>
</html>