-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- It will refresh page after 3 seconds. Its browsers job to reload it and not JS.
<meta http-equiv="refresh" content="3"/> -->
<title>Random Quotes</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body id="bodyForColor">
<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="tag">twitter</span>twitter</p>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>