-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathindex.html
141 lines (109 loc) · 2.84 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sprint Challenge - Home</title>
<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>
<div>
BLOOMTECH BAR AND GRILL
<!-- nav -->
Menu
Reservations
Special Offers
Contact
</div>
</header>
<!-- gallery section -->
<section class="gallery">
<div>
<h2>OUR FOOD</h2>
img/food-avocadotoast.jpg
img/food-burger.jpg
img/food-poutine.jpg
img/food-ribs.jpg
img/food-sandwich.jpg
img/food-sausage.jpg
img/food-steak.jpg
img/food-tacos.jpg
img/food-wings.jpg
</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 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:[email protected]">[email protected]</a>
</div>
</div>
</div>
</div>
</section>
<!-- spacer -->
<div class="spacer-sm"></div>
<!-- footer -->
<footer>
<!-- email signup -->
Join our mailing list!
Sign Up
<!-- nav -->
Menu
Reservations
Special Offers
Contact
<!-- copyright -->
©2022 BloomTech Restaurant Group, Inc. All Rights Reserved.
</footer>
</div>
</body>
</html>