-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.44 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
<!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="stylesheet" href="style.css">
</head>
<body>
<div class="quote-container" id="quote-container">
<div class="quote-text">
<i class="fas fa-quote-left"></i>
<span id="quote">Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.</span>
</div>
<div class="quote-author">
<span id="author">- Lorem ipsum</span>
</div>
<div class="button-container">
<button class="x-button" id="x" title="Tweet This!">
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" viewBox="0 0 512 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="#ffffff" d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg> </button>
<button id="new-quote">New Quote</button>
</div>
</div>
<div class="loader"></div>
<!-- Script -->
<script src="https://kit.fontawesome.com/b276ed8c2d.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>