-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (97 loc) · 4.27 KB
/
index.html
File metadata and controls
107 lines (97 loc) · 4.27 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quarantini</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed&family=Ubuntu&display=swap" rel="stylesheet">
<link rel="stylesheet" href="CSS/reset.css">
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<header>
<img id="logo" src='assets/iconfinder_beer_811447.png' alt="logo">
<ul id="social">
<li><a href=""><img src="assets/fb-icon.png" alt="facebook"></a></li>
<li><a href=""><img src="assets/insta-icon.png" alt="instagram"></a></li>
<li><a href=""><img src="assets/twit-icon.png" alt="twitter"></a></li>
</ul>
<ul id="nav">
<li id ="aboutUs">About Us</li>
<li id="ourBeers">Our Beers</li>
<li id=locations>Locations</li>
<li id="contactUs">Contact Us</li>
</ul>
<div id="announcementBar">
</div>
</header>
<main id='main'>
<!-- About Us Section -->
<section id="aboutSection">
<h1 id=aboutUsTitle>Who We Are</h1>
<p id='aboutUsText'>Welcome to Quarantini Hop-Shop. We are a small local PNW brewery located in the heart of Seattle. We brew and carry beers of all backgrounds. We started off brewing in our parents garages. What was originally just a fun off to the side hobby, then turned into a local well known beer brand. We then figured since we've been doing this for so long and had so many request from friends and family, that we'd go into business.</p>
<img id='cask' src="pics/cask.jpeg" alt="beer barrel">
<h1 id='party'>Quarantini Party</h1>
<img id='haz1' src='pics/hazmat1.jpeg'>
<img id='haz2' src='pics/hazmat2.jpeg'>
<img id='haz3' src='pics/hazmat3.jpeg'>
<img id='haz4' src='pics/hazmat4.jpeg'>
</section>
<!-- Our Beers Section -->
<section id="beerSection">
<h1>Check Out Our Beers!</h1>
<div id="toggleSwitches">
<h2>Filters</h2>
<form name='toggles'>
<label>IPA</label>
<input type="checkbox" class='beerFilter' id='IPA'><br>
<label>Pale Ale</label>
<input type="checkbox" class='beerFilter' id='Pale Ale'><br>
<label>Porter</label>
<input type="checkbox" class='beerFilter' id='Porter'><br>
<label>Stout</label>
<input type="checkbox" class='beerFilter' id='Stout'><br>
<label>Hefewiezen</label>
<input type="checkbox" class='beerFilter' id='Hefeweizen'><br>
<label>Domestic</label>
<input type="checkbox" class='beerFilter' id='Domestic'><br>
</form>
</div>
<div id="beerCardSection">
<h2>Beer List</h2>
</div>
</section>
<!-- Locations Section -->
<section id="locationSection">
<h1>Our Location</h1>
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10757.597109467359!2d-122.3517917!3d47.6183694!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xe3d3fd29c55db518!2sCode%20Fellows!5e0!3m2!1sen!2sus!4v1585175602619!5m2!1sen!2sus" frameborder="0"></iframe>
</section>
<!-- Contact Us Section -->
<section id="contactSection">
<h1>Send us a message!</h1>
<form id='contact' action="https://formspree.io/xjvozpye" method="POST">
<img id='contactimg' src='pics/women.jpeg'>
<label>Please enter your full name</label>
<input type='text' id='name' name='name'><br>
<label>Please enter your phone number</label>
<input type='text' id='phone' name='phone'><br>
<label>Please enter your email address</label>
<input type='text' id='email' name='email'><br>
<label id='messageLabel'>Leave us a message</label>
<textarea name='message' id='message' cols='50' rows='3'></textarea>
<button type='submit' id='contactButton'>Submit</button>
</form>
</section>
</main>
<footer>
<ul>
<li>Paul, Ken, Ryan, Peyton.</li>
<li id="smallLogoContainer"><img id="smallLogo" src='assets/iconfinder_beer_811447.png'alt="smaller logo"></li>
<li><p id="link">Control Panel</p></li>
</ul>
<p>© Quarantini Group</p>
</footer>
<script src='JS/app.js'></script>
<script src="JS/index.js"></script>
</body>
</html>