forked from dhruv-solanki/chrome-focus-tab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (59 loc) · 2.25 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
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Focus Tab - Dhruv Solanki</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<p class="mr-2 mt-2" id="refreshImageIcon">
<i class="fa fa-refresh fa-lg"></i>
</p>
<div
id="unsplash-img"
class="main-div bg-dark text-light d-flex align-items-center justify-content-center"
>
<div class="content text-center">
<div class="time-container">
<h1 id="time"></h1>
</div>
<div class="date-container">
<h3 id="date"></h3>
</div>
<div class="mt-5 quote-container">
<span>
<span id="quote"></span>
<span id="copyQuoteIcon">
<i class="fa fa-copy fa-lg"></i>
</span>
</span>
<p class="mt-2" id="author"></p>
<p class="mt-2" id="refreshQuoteIcon">
<i class="fa fa-refresh fa-lg"></i>
</p>
</div>
</div>
</div>
<div class="footer text-light">
<h5>
Created with <span class="heart">♥</span> by
<a class="dev-name" href="https://github.com/dhruv-solanki">
<span>Dhruv Solanki</span>
</a>
</h5>
</div>
<script src="focus.js"></script>
</body>
</html>