-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
177 lines (133 loc) · 3.89 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sprint Challenge - Home</title>
<link rel="stylesheet" href="css/index.css">
<link href="https://fonts.googleapis.com/css?family=Roboto|Rubik" rel="stylesheet">
<script src="https://kit.fontawesome.com/5b12ffad4b.js" crossorigin="anonymous"></script>
</head>
<body>
<div>
<!-- header -->
<header>
<h1><a href="index.html">BLOOMTECH BAR AND GRILL</a></h1>
<!-- nav -->
<nav>
<div>
<a href="menu.html">Menu</a>
<a href="#">Reservations</a>
<a href="#">Special Offers</a>
<a href="#contact">Contact</a>
</div>
<button><i class="fa-brands fa-facebook"></i></button>
<button><i class="fa-brands fa-twitter"></i></button>
<button><i class="fa-brands fa-instagram"></i></button>
</nav>
</header>
<!-- gallery section -->
<section class="gallery">
<div>
<h2>OUR FOOD</h2>
<div class="pics">
<div class="a">
<img src="img/food-avocadotoast.jpg">
<img src="img/food-burger.jpg">
<img src="img/food-poutine.jpg">
</div>
<div class="b">
<img src="img/food-ribs.jpg">
<img src="img/food-sandwich.jpg">
<img src="img/food-sausage.jpg">
</div>
<div class="c">
<img src="img/food-steak.jpg">
<img src="img/food-tacos.jpg">
<img src="img/food-wings.jpg">
</div>
</div>
</div>
</section>
<!-- spacer -->
<div class="spacer"></div>
<!-- about section -->
<section class="about">
<div class="about-container">
<h2>ABOUT US</h2>
<div id="cooks" class="pic">
</div>
<div class="text">
<h3>Good Food, Great People</h3>
<p>Quis duis aute, shank ut pork eiusmod in ball tip jerky non. Short ribs tail dolore, fatback in
tempor meatloaf pig sunt porchetta beef. Ad hamburger pig veniam, andouille exercitation cillum
eiusmod doner irure tail burgdoggen rump chislic officia. Pancetta frankfurter sed, est t-bone
porchetta capicola id tri-tip cillum cow leberkas do minim. Sausage ea velit boudin laboris
dolore
short loin corned beef commodo jowl beef dolor tempor. Dolor culpa enim in meatloaf, ham mollit
shankle duis chicken dolore andouille do tenderloin qui.</p>
</div>
<div id="bartender" class="pic">
</div>
</div>
</section>
<!-- spacer -->
<div class="spacer"></div>
<!-- contact section -->
<section id="contact" class="contact">
<div class="contact-container">
<h2>CONTACT US</h2>
<div class="info">
<div class="address">
<h3>Address</h3>
<address>
<p>100 Main St</p>
<p>San Francisco, CA</p>
</address>
</div>
<div class="hours">
<h3>Hours</h3>
<div>
<p>Sunday to Thursday:</p>
<p>12:00p - 12:00a</p>
<p>Friday and Saturday:</p>
<p>12:00p - 4:00a</p>
</div>
</div>
<div class="contacts">
<h3>Contacts</h3>
<div>
<a id="phone" href="tel:999-999-9999">999-999-9999</a>
<a id="email" href="mailto:restaurant@bloomtech.com">restaurant@bloomtech.com</a>
</div>
</div>
</div>
</div>
</section>
<!-- spacer -->
<div class="spacer-sm"></div>
<!-- footer -->
<footer>
<div class="fblock">
<!-- email signup -->
<div class="ema">
<p>Join our mailing list!</p>
<input type="text" placeholder="Email Address">
<button>Sign Up</button>
</div>
<!-- nav -->
<nav>
<a href="menu.html">Menu</a>
<a href="#">Reservations</a>
<a href="#">Special Offers</a>
<a href="#contact">Contact</a>
</nav>
</div>
<!-- copyright -->
<div class="copy">
<P>©2022 BloomTech Restaurant Group, Inc. All Rights Reserved.</P>
</div>
</footer>
</div>
</body>
</html>