-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (95 loc) · 4 KB
/
index.html
File metadata and controls
95 lines (95 loc) · 4 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>LadyDev Bar & Grill</title>
<script src="https://use.fontawesome.com/81b69a015b.js"></script>
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="about" class="hero">
<div class="hero-text">
<h1>LadyDev</h1>
<h1>Bar & Grill</h1>
<h2>Making development more delicious every day!</h2>
<p>Welcome to the LadyDev Bar & Grill. We're glad you're here!</p>
<p>Sit down, relax, and enjoy good drinks, good eats, and good friends.</p>
</div>
</section>
<main class="grid-container">
<section id="menu" class="drinks">
<h2>Menu</h2>
<ul>
<li class="item">
<a href="#"><img src="images/martini.jpg" alt=""></a>
<h3 class="beverage">Martinis</h3>
<p>Made with our own homemade gin and dry vermouth. Choose from The Classic, Lemondrop, or Chocolate.</p>
</li>
<li class="item">
<a href="#"><img src="images/wine.jpg" alt=""></a>
<h3 class="beverage">Wine</h3>
<p>There are just too many to list. Ask your server for a recommendation.</p>
</li>
<li class="item">
<a href="#"><img src="images/whiskey-cocktails.jpg" alt=""></a>
<h3 class="beverage">Whiskey cocktails</h3>
<p>Whiskey. Known as the water of life and a drink worthy of deep contemplation. Thank goodness it's not
just for men anymore.</p>
</li>
<li class="item">
<a href="#"><img src="images/margarita.jpg" alt=""></a>
<h3 class="beverage">Margaritas</h3>
<p>Slushy frozen delicousness, in Peach, Strawberry, or Mango. Served with a rock-salted rim and lime.
</p>
</li>
<li class="item">
<a href="#"><img src="images/hot-cocktail.jpg" alt=""></a>
<h3 class="beverage">Hot & Creamy</h3>
<p>Just what you need to kick off a night of coding. We offer concoctions with coffee, Kahlua, Bailey's,
and
more.</p>
</li>
<li class="item">
<a href="#"><img src="images/beer.jpg" alt=""></a>
<h3 class="beverage">Beer</h3>
<p>We serve the finest microbrews from around the world. How about a Saison, IPA, or Stout?</p>
</li>
<li class="item">
<a href="#"><img src="images/milk.jpg" alt=""></a>
<h3 class="beverage">Non alcoholic</h3>
<p>We have plenty of NA options available to quench your thirst, like lemonade, milk or soda.</p>
</li>
</ul>
</section>
<section class="small-plates">
<h2>Small plates</h2>
<ul class="food">
<li>Grassfed beef sliders</li>
<li>Spicy calamari</li>
<li>Coconut shrimp</li>
<li>Veggie spring rolls</li>
<li>Deviled eggs</li>
<li>Tuscan bean dip</li>
<li>Chicken lettuce wraps</li>
</ul>
</section>
</main>
<footer id="contact">
<p>© 2020 LadyDev Bar & Grill</p>
<ul>
<li><a href="http://facebook.com/ladydevbargrill"><i class="fa fa-facebook-official fa-lg"></i></a></li>
<li><a href="http://twitter.com/ladydevbargrill"><i class="fa fa-twitter fa-lg"></i></a></li>
<li><a href="http://instagram.com/ladydevbargrill"><i class="fa fa-instagram fa-lg"></i></a></li>
<li><a href="mailto:ladydevbargrill@example.com"><i class="fa fa-envelope-open-o fa-lg"></i></a></li>
</ul>
</footer>
</body>
</html>