-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
54 lines (52 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-language" content="en-US" />
<meta charset="utf-8" />
<title>Display Quote collection</title>
<link
href="https://fonts.googleapis.com/css?family=Be+Vietnam|Montserrat&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Cardo|Roboto&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Oswald&display=swap"
rel="stylesheet"
/>
<link type="text/css" rel="stylesheet" href="main.css" />
</head>
<body>
<section class="wrapper">
<div class="load-new-quote">
<a
class="load-button"
href="#"
onclick="quote.getQuote(true)">Next Quote</a>
<p>
Quote: <span id="currentQuoteIndex">0</span>/<span id="total">0</span>
</p>
</div>
<div class="blockquote-wrapper" id="blockquote-wrapper">
<div clas="container">
<div class="blockquote">
<div class="flex-box">
<h1 id="quote-body">Start before you are ready</h1>
</div>
<div class="flex-box">
<h4 id="from">—Steven Pressfield</h4>
</div>
</div>
</div>
</div>
<footer class="link">
<p>
<a href="quotes.txt" target="quotes" class="quote-file">Quote File</a>
</p>
</footer>
</section>
<script src="from_quote_file.js"></script>
</body>
</html>