-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
49 lines (37 loc) · 1.34 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mitch Hedberg Quote Generator</title>
<link rel="stylesheet" href="./css/style.css">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-2.2.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="./lib/quotes.js"></script>
<script src="./lib/app.js"></script>
</head>
<body>
<div class="container">
<h1>Mitch Hedberg Quote Generator</h1>
<div>
<!-- empty column for flexbox alignment -->
</div>
<div class="quote-container">
<i class="fa fa-quote-left" aria-hidden="true"></i>
<div id="quote">
<!-- jQuery injects quote here -->
</div>
<div style="text-align: right;">
<p><i class="fa fa-quote-right" aria-hidden="true"></i></p>
<p id="mitch">- Mitch Hedberg</p>
</div>
<button class="btn" style="font-size: 20px; font-weight: bold; border: 1px solid black; border-radius: 7px;">
New Quote
</button>
<div id="mobile-only-tweet-button">
<!-- displays on screen widths < 750px -->
</div>
</div>
</body>
</html>