-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 956 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (30 loc) · 956 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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<title>Something</title>
<meta charset="UTF-8">
</head>
<link rel="stylesheet" href="./index.css" charset="utf-8"></link>
<body>
<div class="js-clock">
<h1 class="js-clock clock">00:00</h1>
</div>
<form class="js-form form">
<input type="text" placeholder="What is your name?" />
</form>
<h4 class="js-greetings greetings"></h4>
<span class="js-weather">
</span>
<form class="js-toDoForm">
<input class="js-toDoForm__toDoForm" type="text" size="35" height="" placeholder="What's your focus today?">
</form>
<ul class="js-toDoList">
</ul>
<script src="clock.js"></script>
<script src="greetings.js"></script>
<script src="todo.js"></script>
<script src="bg.js"></script>
<script src="weather.js"></script>
</body>
</html>