-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (44 loc) · 1.58 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tinyCode_Random Quote Generator</title>
<link rel="icon" href="assets/images/favicon-16x16.png">
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,300;0,400;0,700;1,400&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- HEADER -->
<div class="header">
<header class="header__main">
<h1 class="header__text"><em>tinyCode_</em>Random Quote Generator</h1>
</header>
</div>
<div class="quote__container" id="quote__container">
<!-- QUOTE -->
<div class="quote__text">
<i class="fas fa-quote-left"></i>
<span id="quote"></span>
<i class="fas fa-quote-right"></i>
</div>
<!-- AUTHOR -->
<div class="quote__author">
<span id="author"></span>
</div>
<!-- BUTTONS -->
<div class="button__container" id="button__container">
<button class="button__twitter" id="twitter" title="Tweet This!">
<i class="fab fa-twitter"></i>
</button>
<button class="button__quote" id="new-quote">New Quote</button>
</div>
</div>
<!-- LOADER -->
<div class="loader" id="loader"></div>
</body>
<!-- Script -->
<script src="script.js"></script>
</html>