-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Something</title>
<link
rel="stylesheet"
href="https://pgs787.github.io/nomadcoders/css/index.css"
/>
<script
src="https://kit.fontawesome.com/70416cbec6.js"
crossorigin="anonymous"
></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</head>
<body>
<div class="js-clock">
<div class="currentTime">00:00</div>
</div>
<form class="js-form form">
<div style="font-size: 1.5rem;">
What is your name?<br />
<input type="text" />
</div>
</form>
<h4 class="js-greetings greetings"></h4>
<form class="js-todoForm">
<div style="font-size: 1.8rem;">
What is your main focus for today?
<input type="text" />
</div>
</form>
<ul class="js-todoList"></ul>
<span class="js-weather"></span>
<script src="greeting.js"></script>
<script src="todo.js"></script>
<script src="background.js"></script>
<script src="weather.js"></script>
</body>
</html>