-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
70 lines (66 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Big Steer Steak House</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.contact-container {
width: 60%;
margin: 50px auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
text-align: center;
color: #c0392b;
}
p {
font-size: 18px;
color: #333;
line-height: 1.6;
}
.contact-info {
margin: 20px 0;
padding: 15px;
background-color: #e9ecef;
border-radius: 5px;
}
.contact-info p {
margin: 5px 0;
}
</style>
<!-- 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>
</ul>
</div>
</nav>
</head>
<body>
<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>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>
</body>
</html>