-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (61 loc) · 4.92 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="./css/style.css" rel="stylesheet"> <!-- custom css code -->
<title>restauraunt</title>
</head>
<body>
<header class="row">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a id="brand" class="navbar-brand" href="#">Food, LLC</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link d-none d-lg-block" aria-current="page" href="#Chiken">Chiken</a>
<a class="nav-link center d-md-block d-lg-none" aria-current="page" href="#Chiken">Chiken</a>
<a class="nav-link d-none d-lg-block" href="#Beef">Beef</a>
<a class="nav-link center d-md-block d-lg-none" href="#Beef">Beef</a>
<a class="nav-link d-none d-lg-block" href="#Sushi">Sushi</a>
<a class="nav-link center d-md-block d-lg-none" href="#Sushi">Sushi</a>
</div>
</div>
</div>
</nav>
</header>
<h2>OUR MENU</h2>
<div class="container">
<div class="row">
<div id="Chiken" class="col-lg-3 col-md-5 col-xs-12 menu-box ">
<span class="menu-title">Chiken</span>
<p>Not everyone makes it the same, and that’s the beauty of it, Whether you go for fried, grilled, smoked, or even baked, chicken is the holy grail of all good food, We’ve compiled a list of the best fried chicken restaurant chains for all chicken lovers, If you’ve never been to any of these restaurants or want a break from your regular favorite, we recommend you check out these places for a scrumptious bite, Here are our picks for the best fast food fried chicken chain restaurants. <a href="#brand">Back to top</a></p>
</div>
<hr class="col-xs-12 d-md-none">
<div id="Beef" class="col-lg-4 col-md-5 col-xs-12 menu-box offset-lg-1 offset-md-2">
<span class="menu-title">Beef</span>
<p>Prime Rib Au jus – A 12oz. roasted prime rib spiked with garlic and seasoning. Roasted to juicy perfection. 8oz. Swiss Steak Jardiniere – An 8oz. cubed round steak sautéed to seal in the flavor and the slowly baked with onion, carrots, tomato, celery with garlic and seasoning, 9 oz, Broiled Top Sirloin – A 9oz, Angus top sirloin steak full of flavor and texture, Broiled over open flame to enhance its flavors,12oz, New York Strip – A 12oz, USDA Choice steak broiled over an open flame to enhance its natural flavors, 8oz. and 10oz. Flat Iron Steak – Your choice of either an 8oz or a 10oz USDA choice Flat Iron steak, broiled over open flame to enhance its flavors. <a href="#brand">Back to top</a></p>
</div>
<hr class="col-xs-12 d-md-none">
<div id="Sushi" class="col-lg-3 col-md-12 col-xs-12 menu-box offset-lg-1">
<span class="menu-title">Sushi</span>
<p>We have combined some of the most popular sushi into menus. The menus start from 8 pieces right to 100 pieces. For two people our most popular menu is the Kyoto which provides 30 pieces of varied sushi types including the nigiri, hoso maki and futomaki in addition to a variety of fish, onsisting of cooked rice flavoured with vinegar and a variety of vegetable, egg, or raw seafood garnishes and served cold. Restaurants specializing in sushi abound in Japan <a href="#brand">Back to top</a></p>
</div>
</div>
</div>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
-->
</body>
</html>