-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
144 lines (131 loc) · 4.6 KB
/
index.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Swamp Fox BBQ</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Come on down to Swamp Fox BBQ, home to the Pee Dee's best barbercue!">
<link href = "css/style.css" rel = "stylesheet"/>
<link href="//db.onlinewebfonts.com/c/93c4327f0457b01d13b376849536395d?family=Stencil+Std" rel="stylesheet" type="text/css"/>
<link rel="shortcut icon" href="pig.png"/>
</head>
<body>
<header role="banner">
<nav role="navigation" class="navbar" id="toggle-nav">
<ul class="clearfix">
<div class = "float-left">
<a class= "homepage" href ="index.html"><p>SWAMP FOX BBQ</p></a>
</div>
<div class = "float-right">
<li><a href ="pages/menu.html">MENU</a></li><li><a href ="pages/events.html">EVENTS</a></li><li><a href ="pages/contact-form.html">CATERING</a></li>
</div>
<button class="icon" onclick="toggleNavbar()">
<i class="fa fa-bars"></i>
</button>
</ul>
</nav>
<div class = "title homepage">
<p>HOME TO THE PEE DEE'S
BEST BARBERCUE!</P>
</div>
</header>
<script src = "js/navbar.js"></script>
<main class="clearfix" role = "landing-body">
<section id ="welcome">
<h1>OUR MENU</h1>
<p>From our tender BBQ Pulled Pork to our scrumptious ribs, our dishes will KNOCK YOUR SOCKS OFF! Every BBQ dish we serve is smothered in our made-from scratch Carolina BBQ Sauce, ready to order!</p>
<div class = "wrapper">
<div class = "menu-card">
<div class = "img">
<img src="img/pulledpork.jpg" alt="pulled pork"/>
</div>
<div class = "description bbq">
tender pulled pork
</div>
</div >
<div class = "menu-card ">
<div class = "img">
<img src="img/brisket.jpeg" alt="brisket"/>
</div>
<div class = "description bbq">
Juicy Brisket
</div>
</div>
<div class = "menu-card">
<div class = "img">
<img src="img/bbq_chicken.jpg" alt="chicken"/>
</div>
<div class = "description bbq">
Tasty BBQ Chicken
</div>
</div>
</div>
</section>
<section id ="desserts">
<p>Got a sweet tooth? We offer classic, made-from scratch Southern desserts guaranteed to hit the spot, made with fresh ingredients!</p>
<div class ="wrapper">
<div class ="menu-card">
<div class = "img">
<img src="img/peach_pie.jpg" alt="pie"/>
</div>
<div class = "description dessert">
Peach Hand Pies
</div>
</div>
<div class ="menu-card">
<div class = "img">
<img src="img/apple_pies.jpeg" alt="apple pie"/>
</div>
<div class = "description dessert">
Apple Hand Pies
</div>
</div>
<div class ="menu-card">
<div class = "img">
<img src="img/apple-cobbler.jpg" alt="apple cobbler"/>
</div>
<div class = "description dessert">
APPLE COBBLER
</div>
</div>
</div>
<a href ="pages/menu.html">VIEW OUR FULL MENU</a>
</section>
<section id = "catering">
<h1>CATERING</h1>
<div class = "offer">
<div class = "text">
<p >From parties to tailgating to get-togethers, Swamp Fox BBQ offers catering to all types of events.</p>
<p>We serve up our tender, juicy meats and our scratch-made sides to deliver or to set up and serve. Give us a call, tell us how many you plan to serve, and we'll handle the rest.</p>
</div>
<a href ="pages/contact-form.html">PLACE A CATERING ORDER</a>
</div>
</section>
<section id = "schedule">
<h1>OUR STORY</h1>
<div class = "wrapper">
<div class = "schedule">
<p>Since 1999, Swamp Fox BBQ has served the Pee Dee community by going the "extra mile" in everything we do. We slow-roast our meats to perfection and make every item we serve from scratch. No microwaves, freezers, or shortcuts are involved in our process -- making delicious food takes hard work, and hard work is the American way.</p>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-items">
<div class = "address">
<p>Swamp Fox BBQ</p>
<p>4784 Highway 301 South</p>
<p>Florence, South Carolina 29506</p>
<p>Look for the giant American Flag in front!</p>
<br />
</div>
<div class = "ww">
<p>Swamp Fox BBQ is raising funds for the <b style="font-family:stencil,stencil std bold,sans-serif;">Wounded Warrior Project </b>.</p>
<p> Donate to the Wounded Warrior fund, click on the link below:</p>
<br />
<a href="http://www.woundedwarriorproject.org"><img src="img/wwp.jpg" alt="Wounded Warrior Project logo" width="50" height="50"></a><!--Wounded Warrior project logo-->
</div>
</div>
</footer>
</body>
</html>