-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
110 lines (101 loc) · 3.34 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
/>
<!-- Link CSS -->
<link rel="stylesheet" href="assets/styles.css" />
<title>Quotify</title>
<!-- Favicon -->
<link rel="icon" href="assets/images/logo.png" />
<!-- Font Awesome icons -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
/>
<!-- Google Font -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Tangerine"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Rokkitt:ital,wght@0,100..900;1,100..900&family=Vidaloka&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!--Navbar-->
<div class="navbar container">
<div class="menu">
<button id="theme-toggle" class="btn">
<img
src="assets/images/moon.png"
style="height: 1.5rem"
class="themelogo"
/>
</button>
</div>
<div class="menu ml-auto">
<img src="assets/images/dark-logo.png" style="height: 2rem" />
</div>
<div class="menu ml-auto">
<a href="https://github.com/Sabeer-Junaid/quotify" target="_blank"
><button id="code-btn" class="btn">
<img
src="assets/images/code-ico.png"
style="height: 1.4rem"
/></button
></a>
</div>
</div>
<!--Main-->
<div class="cover-logo container">
<img src="assets/images/dark-logo.png" class="logo" />
</div>
<div class="content container">
<p class="quote">
<!-- Fetch Quote Display here -->
</p>
<p class="author">
<!-- Fetch Author Display here -->
</p>
<div class="icons">
<button class="btn" id="share-btn">
<img src="assets/images/share-ico.png" />
</button>
<button class="btn" id="generate-btn">
<img src="assets/images/newquote-ico.png" />
</button>
<button class="btn" id="copy-btn">
<img src="assets/images/copy-ico.png" />
</button>
</div>
</div>
<div id="alert-box" class="hidden container">
<p id="alert-message">
<img src="assets/images/greendot.png" height="10" width="10" />Copied
</p>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="assets/script.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>