-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.html
89 lines (84 loc) · 3.89 KB
/
bootstrap.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Big Steer Steakhouse</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container-fluid p-5 bg-dark text-white text-center">
<h1>Welcome to Big Steer Steakhouse</h1>
<p>Home of sizzling steaks and savory flavors!</p>
</div>
<div class="container mt-5">
<div class="row">
<div class="col-sm-4">
<h3>Our Specialties</h3>
<p>Sink your teeth into perfectly grilled steaks.</p>
<p>We offer a wide selection of premium cuts and mouthwatering sides.</p>
</div>
<div class="col-sm-4">
<h3>Visit Us</h3>
<p>Experience rustic charm and exceptional service.</p>
<p>Located in the heart of steak country, open 7 days a week!</p>
</div>
<div class="col-sm-4">
<h3>Reserve Your Table</h3>
<p>Book your spot for an unforgettable dining experience.</p>
<p>Call us or reserve online today!</p>
</div>
</div>
</div>
<div class="container mt-3">
<h2>Discover Our Menu</h2>
<p>Click the button below to explore our mouthwatering selections.</p>
<button type="button" class="btn btn-dark" data-bs-toggle="collapse" data-bs-target="#menu">View Menu</button>
<div id="menu" class="collapse mt-3">
<p><strong>Signature Steaks:</strong> Perfectly grilled ribeye, filet mignon, and T-bone.</p>
<p><strong>Appetizers:</strong> Sizzling shrimp, loaded potato skins, and more.</p>
<p><strong>Desserts:</strong> Indulge in our chocolate lava cake and classic cheesecake.</p>
</div>
</div>
<div class="container mt-3">
<h2>Stay Updated with Big Steer Steakhouse</h2>
<p>Sign up for our newsletter and never miss a special or promotion!</p>
<form action="/submit_newsletter.php">
<div class="mb-3 mt-3">
<label for="email">Email Address:</label>
<input type="email" class="form-control" id="email" placeholder="Enter your email" name="email">
</div>
<div class="mb-3">
<label for="name">Full Name:</label>
<input type="text" class="form-control" id="name" placeholder="Enter your name" name="name">
</div>
<div class="form-check mb-3">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="updates"> I want to receive updates and special offers.
</label>
</div>
<button type="submit" class="btn btn-dark">Subscribe</button>
</form>
</div>
<div class="offcanvas offcanvas-start" id="demo">
<div class="offcanvas-header">
<h1 class="offcanvas-title">About Big Steer Steakhouse</h1>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas"></button>
</div>
<div class="offcanvas-body">
<p><strong>Our Story:</strong> Big Steer Steakhouse has been serving sizzling steaks and hearty meals for over 20 years. We take pride in sourcing the finest ingredients and delivering an unforgettable dining experience.</p>
<p><strong>Our Atmosphere:</strong> Relax in our rustic, cozy dining room or enjoy a drink at our full-service bar. We aim to make every visit special, whether it's a family dinner or a romantic evening.</p>
<p><strong>Our Promise:</strong> Quality, flavor, and exceptional service are at the heart of everything we do.</p>
<button class="btn btn-dark" type="button">Learn More</button>
</div>
</div>
<div class="container-fluid mt-3">
<h3>About Us</h3>
<p>Want to know more about Big Steer Steakhouse? Click below to read our story!</p>
<button class="btn btn-dark" type="button" data-bs-toggle="offcanvas" data-bs-target="#demo">
Learn About Us
</button>
</div>
</body>
</html>