-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google’s Favicon Service -->
<link rel="shortcut icon" type="image/png" href="https://www.google.com/s2/favicons?domain=jovannickovic.com">
<title>Quote Generator</title>
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/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"></span>
<i class="fas fa-quote-right"></i>
</div>
<div class="quote-author">
<span id="author"></span>
</div>
<div class="buttons-container">
<button id="twitter-button" title="Tweet This!">
<i class="fab fa-twitter"></i>
</button>
<button id="new-quote-button">New Quote</button>
</div>
</div>
<div class="loader" id="loader"></div>
<!-- Custom JS -->
<script src="js/script.js"></script>
</body>
</html>