-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
168 lines (135 loc) · 4.38 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<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>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/cea4d39ec0.js" crossorigin="anonymous"></script>
</head>
<body>
<div>
<!-- header -->
<header>
<div>
<h1><a href="index.html">Bloomtech Bar and Grill</a></h1>
</div>
<!-- nav -->
<nav>
<div class="nav-links">
<a href="menu.html" target="_blank">Menu</a>
<a href="reservations.html" target="_blank">Reservations</a>
<a href="specialoffers.html" target="_blank">Special Offers</a>
<a href="contact.html" target="_blank">Contact</a>
</div>
<div class="social-links">
<a href="https://instagram.com" target="_blank"><i class="fa-brands fa-instagram"></i></a>
<a href="https://facebook.com" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<a href="https://twitter.com" target="_blank"><i class="fa-brands fa-twitter"></i></a>
</div>
</nav>
</header>
<!-- gallery section -->
<section class="gallery">
<div>
<section class="ourfd"><h2>OUR FOOD</h2></section>
<div class="row">
<img src="img/food-avocadotoast.jpg"/>
<br>
<img src="img/food-burger.jpg"/>
<br>
<img src="img/food-poutine.jpg"/>
</div>
<div class="row2">
<img src="img/food-ribs.jpg"/>
<img src="img/food-sandwich.jpg"/>
<img src="img/food-sausage.jpg"/>
</div>
<div class="row3">
<img src="img/food-steak.jpg"/>
<img src="img/food-tacos.jpg"/>
<img src="img/food-wings.jpg"/>
</div>
</section>
</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 -->
<h4>Join our mailing list!</h4>
<input type="email" id="email" name="email" placeholder="Email Address" target="_blank">
<button type="button">Sign Up</button>
<!-- nav -->
<nav>
<div class="nav-linksf">
<a href="menu.html" target="_blank">Menu</a>
<a href="reservations.html" target="_blank">Reservations</a>
<a href="specialoffers.html" target="_blank">Special Offers</a>
<a href="contact.html" target="_blank">Contact</a>
</div>
</nav>
<!-- copyright -->
<p>©2022 BloomTech Restaurant Group, Inc. All Rights Reserved.</p>
</footer>
</div>
</body>
</html>