forked from pprathameshmore/Achieve-Chrome-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.54 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
<!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 href="https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap" rel="stylesheet">
</head>
<body>
<div class="background-container"></div>
<div class="container-fluid">
<div class="main-container text-center" style="color: white">
<div class="time" id="current-time"></div>
<div class="message" id="greeting-message"></div>
<div class="todo" id="todo-container">
<h3 id="label-focus" style="font-size: 300%">What is your main focus for today?</h3>
<div class="form">
<input class="form-control" id="input-focus" type="text" placeholder="What's in your mind?">
</div>
</div>
<div id="quotes"></div>
<br>
<div>
<h5 class="display-4">Photo by : <span id="credit"></span></h5>
</div>
<div id="navigate"></div>
<div id="change-btn"></div>
<div id="location"></div>
</div>
</div>
</body>
<script src="/static/scripts/jquery-3.4.1.js"></script>
<script src="/static/scripts/bootstrap.min.js"></script>
<script src="/static/scripts/main.js"></script>
</html>