-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfood.html
229 lines (216 loc) · 9.43 KB
/
food.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu - Big Steer Steak House</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.menu-container {
width: 60%;
margin: 50px auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #c0392b;
}
p {
color: #333;
line-height: 1.6;
}
.menu-list {
margin-top: 20px;
}
.menu-item {
margin: 10px 0;
padding: 10px;
border-bottom: 1px solid #eaeaea;
}
.contact-container {
margin-top: 50px;
background-color: #e9ecef;
padding: 15px;
border-radius: 5px;
}
.contact-info {
margin: 20px 0;
padding: 15px;
background-color: #e9ecef;
border-radius: 5px;
}
.menu-item h3 {
margin: 0;
color: #c0392b;
}
.menu-item p, .contact-info p {
margin: 5px 0;
font-size: 16px;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="header-bg">
<div class="nav-wrapper">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="menu.html">Our Menu</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="materialize.html">Specials</a></li> <!-- Link to Materialize page -->
<li><a href="contact.html">Contact</a></li>
<li><a href="jquery.html">Features</a></li>
<li><a href="bootstrap.html">Bootstrap</a></li>
</ul>
</div>
</nav>
<div class="menu-container">
<h1>Big Steer Steak House Menu</h1>
<p>At Big Steer Steak House, we pride ourselves on offering the finest cuts of meat, perfectly cooked to your liking. Our menu is crafted to showcase the bold flavors of our signature steaks and provide options for all our guests. Whether you’re dining with family or friends, we have something special for everyone.</p>
<div class="menu-list">
<div class="menu-item">
<h3>1. Ribeye Steak</h3>
<p>A juicy, 16 oz. ribeye grilled to perfection with our signature seasoning. Served with a side of mashed potatoes and sautéed vegetables. - $28.99</p>
</div>
<div class="menu-item">
<h3>2. Filet Mignon</h3>
<p>A tender 8 oz. filet, char-grilled and topped with herb butter. Served with garlic mashed potatoes and asparagus. - $32.99</p>
</div>
<div class="menu-item">
<h3>3. BBQ Ribs</h3>
<p>Half-rack of slow-cooked ribs, smothered in our house-made BBQ sauce. Served with coleslaw and fries. - $24.99</p>
</div>
<div class="menu-item">
<h3>4. Grilled Salmon</h3>
<p>A fresh fillet of salmon, grilled to perfection and topped with a lemon-butter sauce. Served with wild rice and steamed broccoli. - $22.99</p>
</div>
<div class="menu-item">
<h3>5. Classic Cheeseburger</h3>
<p>A juicy 1/2 lb beef patty with cheddar cheese, lettuce, tomato, onion, and pickles. Served with a side of fries. - $14.99</p>
</div>
</div>
<div class="contact-container">
<h1>Contact Big Steer Steak House</h1>
<p>We'd love to hear from you! Whether you have questions about our menu, want to make a reservation, or just want to say hi, feel free to reach out to us. We are located in the heart of Oxford, Ohio, and are ready to serve you the finest steaks in town!</p>
<div class="contact-info">
<p><strong>Location:</strong> Oxford, Ohio</p>
<p><strong>Phone:</strong> 714-440-3333</p>
<p><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></p>
</div>
<p>Each of our dishes is prepared with the freshest ingredients, ensuring that every bite is a delicious one. We also offer a variety of sides and desserts to complement your meal. Visit us today to enjoy an unforgettable dining experience!</p>
<p>Our team at Big Steer Steak House is dedicated to providing an unforgettable dining experience. Feel free to reach out if you have any questions or would like to make a booking for a special occasion. We look forward to seeing you soon!</p>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script>
// Initialize modal
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('.modal');
var instances = M.Modal.init(elems);
});
// Function to display selected cut of steak
function displaySteakChoice() {
const selectedSteak = document.querySelector('input[name="steak"]:checked').value;
document.getElementById('steak-response').innerText = `You selected: ${selectedSteak}`;
}
// Function to handle email subscription form submission
function submitEmail(event) {
event.preventDefault();
const email = document.getElementById('email').value;
document.getElementById('email-response').innerText = `Thank you for subscribing! Updates will be sent to: ${email}`;
document.getElementById('email').value = ''; // Clear the input
// Display modal
const modalText = document.getElementById('modal-content-text');
modalText.innerText = `Thank you for subscribing! We'll keep you updated on our latest specials and events at Big Steer Steakhouse.`;
const modal = M.Modal.getInstance(document.getElementById('modal1'));
modal.open();
}
</script>
<!-- Steak Choice Section -->
<div id="radio-section" class="section container">
<h2>Select Your Favorite Cut</h2>
<form>
<p>
<label>
<input name="steak" type="radio" value="Ribeye" onclick="displaySteakChoice()"/>
<span>Ribeye</span>
</label>
</p>
<p>
<label>
<input name="steak" type="radio" value="Filet Mignon" onclick="displaySteakChoice()"/>
<span>Filet Mignon</span>
</label>
</p>
<p>
<label>
<input name="steak" type="radio" value="Sirloin" onclick="displaySteakChoice()"/>
<span>Sirloin</span>
</label>
</p>
</form>
<div id="steak-response"></div>
</div>
<!-- Email Subscription Section -->
<div id="feedback-section" class="section container">
<h2>Stay Updated on Our Specials</h2>
<form onsubmit="submitEmail(event)">
<div class="input-field">
<input id="email" type="email" required>
<label for="email">Enter Your Email</label>
</div>
<button type="submit" class="btn waves-effect waves-light">Subscribe</button>
</form>
<div id="email-response"></div>
</div>
<!-- Modal Structure -->
<div id="modal1" class="modal">
<div class="modal-content">
<h4>Subscription Confirmed</h4>
<p id="modal-content-text"></p>
</div>
<div class="modal-footer">
<button class="modal-close btn waves-effect waves-light">Close</button>
</div>
</div>
<div class="carousel">
<a class="carousel-item" href="#one!"><img src=juicy-steak-medium-rare-beef-with-spices-grilled-vegetables.jpg"></a>
<a class="carousel-item" href="#two!"><img src="salt-sprinkles-are-fallen-top-beef-steak-served-with-wine.jpg"></a>
<a class="carousel-item" href="#three!"><img src="juicy-steak-medium-rare-beef-with-spices-grilled-vegetables (1).jpg"></a>
<a class="carousel-item" href="#four!"><img src="kyle-mackie-1rEKYxooCh4-unsplash.jpg"></a>
<a class="carousel-item" href="#five!"><img src="alex-munsell-auIbTAcSH6E-unsplash.jpg"></a>
</div>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Collapsible Example</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="container">
<h2>Collapsible List</h2>
<ul class="collapsible">
<li>
<div class="collapsible-header"><i class="material-icons">filter_drama</i>First</div>
<div class="collapsible-body"><span>Lorem ipsum dolor sit amet.</span></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">place</i>Second</div>
<div class="collapsible-body"><span>Lorem ipsum dolor sit amet.</span></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">whatshot</i>Third</div>
<div class="collapsible-body"><span>Lorem ipsum dolor sit amet.</span></div>
</li>
</ul>
</div>
</body>
</html>