-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icons" type="image/png" href="">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/css/all.min.css">
<link rel="stylesheet" href="style.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=courgette&display=swap" rel="stylesheet">
<title>Quote Generator</title>
</head>
<body>
<div class="container" id="container">
<!-- quote -->
<div class="quote-text">
<i class="fas fa-quote-left"></i>
<span id="quote"></span>
</div>
<!-- author -->
<div class="quote-author">
<span id="theAuthor"></span>
</div>
<!-- tag -->
<div class="quote-tag">
<label for="tag">Category:</label>
<span id="tag"></span>
</div>
<!-- buttons -->
<div class="buttons">
<button class="twitter-button" id="twitter" title="tweet this">
<i class="fab fa-twitter"></i>
</button>
<button id="new-quote">new quote</button>
</div>
<div id="counter">
<span> Number of quotes returned: <p id="count"></p></span>
</div>
</div>
<!-- loader -->
<div class="loader" id="loader"></div>
<script src="main.js"></script>
</body>
</html>