-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (44 loc) · 1.23 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
45
46
<!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" />
<title>Current</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<div class="container">
<div class="bg">
<div class="bg-alt"></div>
<img src="" alt="" class="bg-img" />
<div class="caption">
<h4 class="country"></h4>
<h3 class="name"></h3>
</div>
<div class="overlay"></div>
</div>
<div class="content">
<h1 id="time"></h1>
<h2>
<span id="greeting"></span>
<input
type="text"
id="name"
name="name"
placeholder="[_Enter name_]"
autocomplete="off"
/>
</h2>
<h3>What is your focus for today?</h3>
<input id="focus" type="text" name="focus" autocomplete="off" />
<div id="list" class="list"></div>
</div>
</div>
<script src="./main.js"></script>
</body>
</html>