-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.12 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.12 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Random Quote Generator</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css"
rel="stylesheet"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"></script>
</head>
<body>
<div class="main-container">
<div class="title">Find Your Quote!</div>
<div class="container">
<div class="quote-container">
<h3 class="quote"></h3>
<h5 class="author"></h5>
</div>
<div class="all-btns">
<button id="new-quote" class="btn">New Quote</button>
<button id="copy" class="btn">Copy to Clipboard</button>
<button id="tweet" class="btn">Share on Twitter</button>
<button id="save-image" class="btn">
<i class="ri-download-2-line"></i>
</button>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>