-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quote Generator</title>
<link rel="icon" type="image/png" href="https://www.google.com/s2/u/0/favicons?domain=onepagelove.com//">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<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=Oswald:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="quote-container">
<div class="quote-text-box">
<i class="fa-solid fa-quote-left"></i>
<span class="quote-text">The future belongs to those who believe in the beauty of their dreams.</span>
<i class="fa-solid fa-quote-right"></i>
<p class="author">~ Someone</p>
</div>
<div class="buttons-box">
<button class="btn btn-tweeter"><i class="fa-brands fa-twitter"></i></button>
<button class="btn btn-new-tweet">New Quote</button>
</div>
</div>
<!-- loader -->
<div class="loader"></div>
<!-- script -->
<script src="./script.js"></script>
</body>
</html>