-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·71 lines (68 loc) · 2.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Random Quote and Color Generator" />
<meta
property="og:description"
content="Colorful random quote generator built with vanilla javaScript"
/>
<meta
property="og:image"
content="https://heidifryzell.com/js-random-quote-generator/screenshot.png"
/>
<meta
property="og:url"
content="https://heidifryzell.com/js-random-quote-generator/"
/>
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Heidi Fryzell" />
<link rel='stylesheet' id='google-fonts-css' href='https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-css' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css?ver=6.5.1' type='text/css' media='all' />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/styles.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-SF8R56H54Q"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-SF8R56H54Q");
</script>
<title>Random Quotes</title>
</head>
<body>
<div class="app-container">
<header>
<h1>Random Quotes</h1>
<button id="load-quote" class="load-quote">Show another quote</button>
</header>
<div class="container">
<div id="quote-box" class="quote-box">
<p class="quote">
Every great developer you know got there by solving problems they were
unqualified to solve until they actually did it.
</p>
<p class="source">
Patrick McKenzie<span class="citation">Twitter</span
><span class="year">2016</span><span class="emoji">🦉</span>
</p>
</div>
</div>
</div>
<footer>
<p>
<a href="https://heidifryzell.com"><i class="fa-solid fa-terminal"></i></a>
<a href="https://heidifryzell.com">heidifryzell.com</a> ©<span id="copyrightYear"></span>
</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>