-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.html
66 lines (65 loc) · 2.24 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<title>New Tab</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="/static/style/style.css" />
<link rel="stylesheet" href="/static/style/bootstrap.min.css" />
<link rel="stylesheet" href="/static/style/bootstrap-material-design.css" />
<link
href="https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="background-container"></div>
<!-- Most Visited Sites Popdown -->
<div class="head-container">
<div class="dropdown">
<a class="btn btn-lg dropdown" id="dropdown-btn" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
LINKS
</a>
<ul class="dropdown-menu animation slideDownIn">
<div id="urls"></div>
</ul>
</div>
</div>
<div class="main-container">
<div class="time" id="current-time"></div>
<div class="message" id="greeting-message"></div>
<div class="todo" id="todo-container">
<h3 id="label-focus" title="Click here to add" style="font-size: 350%">
What is your main focus for today?
</h3>
<div class="form input-text">
<input
class="form-control"
id="input-focus"
type="text"
style="font-size: 200%"
placeholder="What's in your mind?"
/>
</div>
</div>
<div class="info">
<div id="quotes"></div>
<br />
<div>
<h5 class="display-4" style="font-size: 150%">
Photo by : <span id="credit"></span>
</h5>
</div>
<div id="navigate"></div>
<div id="change-btn" title="Change background image"></div>
<div id="location"></div>
<div id="urls"></div>
</div>
</div>
</body>
<script src="/static/scripts/main.js"></script>
<script src="/static/scripts/popper.min.js"></script>
<script src="/static/scripts/jquery-3.4.1.js"></script>
<script src="/static/scripts/bootstrap.min.js"></script>
</html>