-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhours.html
129 lines (128 loc) · 3.68 KB
/
hours.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!doctype html>
<html>
<head>
<style>
@import url('https://fonts.googleapis.com/css?family=Gafata&display=swap'); <!-- Web font -->
</style>
<meta charset="utf-8">
<title>Hours</title>
<link href="homepage.css" type="text/css" rel="stylesheet">
<link href="hours.css" type="text/css" rel="stylesheet">
<link href="appsubmit.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1 id="hours">Hours</h1>
<nav id="navhours">
<ul>
<li> <a href="homepage.html">Home</a> </li>
<li> <a href="location.html">Locations</a> </li>
<li> <a href="faq.html">F.A.Q</a> </li>
<li> <a href="menu.html" title="Open the menu page in a new window">Menu</a> </li>
<li> <a href="hours.html">Hours</a> </li>
<li> <a href="media.html">Media</a> </li>
<li> <a href="events.html">Events</a> </li>
<li> <a href="jobs.html">Jobs</a> </li>
<li> <a href="about.html">About</a> </li>
<li> <a href="contact.html">Contact Us</a> </li>
</ul>
<h1 id="hoursbox"></h1>
<h1 id="hoursdesc"> = Open</h1>
<h1 id="hoursboxclosed"></h1>
<h1 id="hourscloseddesc"> = Closed</h1>
<table>
</caption>
<tr class="days">
<th></th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
<th>Sunday</th>
</tr>
<tr class="times">
<th>11:00</th>
<td class="closed"></td>
<td class="open" rowspan="7"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
</tr>
<tr class="times">
<th>12:00</th>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
</tr>
<tr class="times">
<th>1:00</th>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open" rowspan="2" colspan="2"></td>
<tr class="times">
<th>2:00</th>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<tr class="times">
<th>3:00</th>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<tr class="times">
<th>4:00</th>
<td class="open" colspan="7"></td>
<tr class="times">
<th>5:00</th>
<td class="open" colspan="3"</td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<tr class="times"></td>
<th>6:00</th>
<td class="open">
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<td class="open"></td>
<tr class="times"></td>
<th>7:00</th>
<td class="closed" colspan="4"></td>
<td class="open" colspan="2"></td>
<td class="closed"></td>
<tr class="times"></td>
<th>8:00</th>
<td class="closed"></td>
<td class="closed"></td>
<td class="closed"></td>
<td class="closed"></td>
<td class="open" colspan="2"></td>
<td class="closed"></td>
</table>
<div class="container1"> <!-- Responsive Newsletter signup -->
<form action="#">
<p style="font-size: 15px;">Be the first in the loop and sign up below.</p>
<div class="email-box">
<!-- This is the box that slides out -->
<input class="tbox" type="email" name="" value="" placeholder="Enter your email">
<button class="btn" type="button" name="button">Subscribe</button>
</div>
</form>
</div>
</body>
</html>