This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
95 lines (83 loc) · 3.24 KB
/
contact.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Woke Yolk | Contact</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="img/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="img/favicon-16x16.png" sizes="16x16" />
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Gudea|Kranky|Open+Sans" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<div class="social_links">
<a href="mailto:thewokeyolk@gmail.com"><img src="img/mail_circle_icon_white.png" alt="mail icon"></a>
<a href="#"><img src="img/phone_circle_icon_white.png" alt="phone icon"></a>
</div>
<div id="header_wrapper">
<div id="logo_header">
<a href="index.html"><img src="img/woke_yolk.png" alt="Woke Yolk Logo featuring raised fist with spatula"></a>
</div>
<nav>
<a href="index.html"><div>Home</div></a>
<a href="about.html"><div>About</div></a>
<a href="menu.html"><div>Menu</div></a>
<a href="contact.html"><div class="selected">Contact</div></a>
</nav>
</div>
</header>
<main>
<div id="contact_tagline" class="tagline">
<h1>Take a<br/><span>Seat</span>
</h1>
</div>
<div id="intro">
<h2>Contact Us</h2>
<p>Want to stop in? Peep our hours below.<br/> Questions? Comments? Get in touch with us; we don't bite.</p>
<div>
<img src="img/white_menu_arrow.png" alt="menu arrow">
</div>
</div>
<div id="contact_columns">
<div class="contact_column">
<h3>Hours</h3>
<p>Monday & Tuesday 9:00am until 1:00pm</p>
<p>Wednesday - Friday 8:00am until 4:00pm</p>
<p>Saturday - Sunday 8:00am until 5:00pm</p>
<p>Late Nite Weekends (Friday, Saturday, Sunday) 8:00pm until 1:00am</p>
</div>
<div class="contact_column">
<h3>Location</h3>
<p>123 Main Street<br/>Portlandia, ME 12345</p>
<p>(Right next to the Smooth Sounds Record Shop)</p>
<p>(207) 555-5555</p>
<p>thewokeyolk@gmail.com</p>
</div>
</div>
</main>
<div id="sticky">
<div id="top">
<a href="#">Back to Top</a>
</div>
</div>
<footer>
<div>
<div id="address_block">
The Woke Yolk<br/>
123 Main Street<br/>
Portlandia, ME 12345<br>
(207) 555-5555
</div>
<div id="copy">
Website by Olivia Orr © 2017
</div>
</div>
<div id="to_top">
<a href="#">Back to Top</a>
</div>
</footer>
<script src="js/app.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>