forked from seths10/Quotes-Generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (52 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Quotes Generator</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="icons/favicon-32x32.png"
/>
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<div id="mode">
<i class="far fa-lightbulb" id="modeIcon"></i>
<p id="modeText">Light Mode</p>
</div>
<div class="container">
<div class="header">
<h2>Quote Generator</h2>
</div>
<div class="main-content">
<div class="text-area">
<span class="quote"
>"Life is what happens when you're busy making other plans"</span
>
</div>
<div class="writer">- John Lennon</div>
<div class="button-area">
<div>
<button id="Qbtn" class="allBtn">Generate</button>
<button id="Tbtn" class="allBtn" title="Tweet This!">
<i class="fab fa-twitter"></i>
Tweet This
</button>
<button id="Cbtn" class="allBtn" title="Copy This!">
<i class="fas fa-clipboard"></i>
Copy to Clipboard
</button>
</div>
</div>
</div>
</div>
<script src="js/quotes.js"></script>
<script src="js/script.js"></script>
</body>
</html>