-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (66 loc) · 5.73 KB
/
index.html
File metadata and controls
73 lines (66 loc) · 5.73 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Restaurants</title>
<link href="https://fonts.googleapis.com/css?family=Exo+2:400,500,600,700" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<nav id="header-nav" class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#menu-collapsable-nav" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="text-left navbar-brand"><h1>Food, LLC</h1></a>
</div><!-- /.nav-header -->
<div id="menu-collapsable-nav" class="collapse navbar-collapse">
<ul id="nav-list" class="nav navbar-nav navbar-right visible-xs text-center">
<li>
<a href="#">Chicken</a>
</li>
<li>
<a href="#">Beef</a>
</li>
<li>
<a href="#">Sushi</a>
</li>
</ul>
</div>
</div><!-- /.container-->
</nav>
<section class="container-fluid menu">
<div class="row">
<h1 class="text-center main-title">Our Menu</h1>
<div class="menu-content">
<div class="col-md-12 col-sm-12 col-xs-12 menu-item">
<h4 class="menu-title text-center">Chicken</h4>
<p class="text-justify">
A public eating establishment similar to a restaurant is mentioned in a 512 BC record from Ancient Egypt. The establishment served only one dish, a plate of cereal, wild fowl, and onions.[5]
A forerunner of the modern restaurant is the thermopolium, an establishment in Ancient Greece and Ancient Rome that sold and served ready-to-eat food and beverages. These establishments were somewhat comparable to modern fast food restaurants. They were most often frequented by people who lacked private kitchens. In the Roman Empire they were popular among residents of insulae.[6]
In Pompeii, 158 thermopolia with service counters have been identified throughout the town. They were concentrated along the main axis of the town and the public spaces where they were frequented by the locals.[7]
The Romans also had the popina, a wine bar which in addition to a variety of wines offered a limited selection of simple foods such as olives, bread, cheese, stews, sausage, and porridge. The popinae were known as places for the plebians of the lower classes of Roman society to socialize. While some were confined to one standing room only, others had tables and stools and a few even had couches.[8][9]
Another early forerunner of the restaurant was the inn. Throughout the ancient world, inns were set up alongside roads to cater to people traveling between cities, offering lodging and food. Meals were typically served at a common table to guests. However, there were no menus or options to choose from.[10]
The Arthashastra references establishments where prepared food was sold in ancient India. One regulation states that "those who trade in cooked rice, liquor, and flesh" are to live in the south of the city. Another states that superintendents of storehouses may give surpluses of bran and flour to "those who prepare cooked rice, and rice-cakes", while a regulation involving city superintendents references "sellers of cooked flesh and cooked rice."[11]
The first eating establishments recognizable as restaurants in the modern sense emerged in Song dynasty China during the 11th and 12th centuries. In large cities, such as Kaifeng and Hangzhou, food catering establishments catered to merchants who travelled between cities. Probably growing out of tea houses and taverns which catered to travellers, Kaifeng's restaurants blossomed into an industry that catered to locals as well as people from other regions of China. As travelling merchants were not used to local cuisine of other cities, these establishments were set up to serve dishes familiar to merchants from other parts of China. Such establishments were located in the entertainment districts of major cities, alongside hotels, bars, and brothels. The larger and more opulent of these establishments offered a dining experience that was similar to modern restaurant culture. According to a Chinese manuscript from 1126, patrons of one such establishment were greeted with a selection of pre-plated demonstration dishes which represented food options. Customers had their orders taken by a team of waiters who would then sing their orders to the kitchen and distribute the dishes in the exact order in which they had been ordered.[12][13]
There is a direct correlation between the growth of the restaurant businesses and institutions of theatrical stage drama, gambling and prostitution which served the burgeoning merchant middle class during the Song dynasty.[14] Restaurants catered to different styles of cuisine, price brackets, and religious requirements. Even within a single restaurant choices were available, and people ordered the entree from written menus.[13] An account from 1275 writes of Hangzhou, the capital city for the last half of the dynasty:
</p>
</div>
</div>
</div>
</section>
</header>
<!-- jQuery (Bootstrap JS plugins depend on it) -->
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>