-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 1.28 KB
/
index.html
File metadata and controls
36 lines (34 loc) · 1.28 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="westtle">
<meta name="description" content="Get random quote.">
<meta name="keywords" content="quote, random quote, random, quote generator, random quote generator">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Random Quote</title>
<link rel="icon" type="image/x-icon" href="#">
<link rel="stylesheet" type="text/css" href="./assets/styles/style.css">
</head>
<body>
<main>
<div id="random-quote">
<a class="__tweet" target="_blank" aria-label="Tweet quote"></a>
<blockquote class="__quote-block">
<div class="_author" role="heading" aria-level="1"></div>
<div class="_quote">
<span class="quotation-mark_">“</span>
<p class="quote-paragraph_"></p>
</div>
</blockquote>
<button class="__new-quote" aria-label="Generate new quote"></button>
</div>
<div id="notice">
Quotable: <a href="https://github.com/lukePeavey/quotable" target="_blank">https://github.com/lukePeavey/quotable</a>
<br>
Repository: <a href="https://github.com/westtle/random-quote" target="_blank">https://github.com/westtle/random-quote</a>
</div>
</main>
<script type="text/javascript" src="./assets/scripts/script.js"></script>
</body>
</html>