forked from lilSebastianIndustries/askRonSwanson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (63 loc) · 3.47 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
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ask Ron Swanson</title>
<link href="https://fonts.googleapis.com/css?family=Archivo+Black|Kalam|Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div class="wrapper">
<header>
<h1>Ask Ron Swanson</h1>
</header>
<main>
<section class="form">
<form class="speechBubble">
<h2>What kind of advice are you looking for?</h2>
<div class="icon animated fadeIn delay-1s">
<input type="image" class="food" src="assets/breakfastIcon.png" value="Dining Advice" title="Dining Advice">
<label for="food">Dining</label>
</div>
<div class="icon animated fadeIn delay-2s">
<input type="image" class="philosophy" src="assets/philosophyIcon.jpg" alt="Philosophical Advice" title="Philosophical Advice">
<label for="philosophy">Philosophical</label>
</div>
<div class="icon animated fadeIn delay-3s">
<input type="image" class="improvement" src="assets/winnerIcon.png" alt="Self-Improvement Advice" title="Self-Improvement Advice">
<label for="improvement">Self-Improvement</label>
</div>
</form>
</section>
<section class="quoteDisplay">
</section>
<figure>
<img src="assets/ron.png" alt="Ron Swanson from the show Parks and Recreation">
</figure>
</main>
</div>
<footer>
<div class="wrapper">
<figure>
<img class="approveBadge" src="assets/ron_approve.png" alt="Ron Swanson Approves badge">
</figure>
<div class="footerText">
<p>Copyright © <a href="https://www.jeffrudd.dev" target="_blank">Jeff Rudd</a> and <a href="https://www.alexandralim.dev" target="_blank">Alex Lim</a> 2019</p>
<p>Ron Swanson Quotes API by <a href="https://github.com/jamesseanwright/ron-swanson-quotes" target="_blank">James Sean Wright</a></p>
<p>Icons made by <a href="https://www.flaticon.com/authors/freepik" target="_blank">Freepik</a> from <a href="https://www.flaticon.com/" target="_blank">Flaticon</a></p>
<p>Background image by <a href="https://unsplash.com/@jontyson" target="_blank">Jon Tyson</a> on <a href="https://unsplash.com/" target="_blank">Unsplash</a></p>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="scripts/scripts.js"></script>
</body>
</html>