-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·96 lines (94 loc) · 4.64 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
<!DOCTYPE html>
<!--
Author : Dinesh Madhup
Student ID : 10447
E-Mail : [email protected]
-->
<html>
<head>
<title>Pizza Store</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/main.css">
<script src="scripts/myJavascript.js"></script>
<script src="scripts/jquery.js"></script>
<script type="text/javascript" src="scripts/scripts.js"></script>
<script type="text/javascript" src="scripts/detectmobilebrowser.js"></script>
<script type="text/javascript" src="cordova.js"></script>
</head>
<body onload="begin = beginAdPage()" >
<header>
<div id="banner">
<img src="images/image11.jpg" name="imagesAd" alt="gobble banner">
</div>
<hgroup>
<h1>University Group Organic Pizza Store</h1>
<h2>Great Food Equals Happy Team</h2>
</hgroup>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="order.html">Orders</a></li>
<li><a href="cart.html">Carts</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
<section>
<div id="main">
<h1>Vision Statement</h1>
<p><strong>Welcome to our home page!</strong></p>
<p>We are a local, independently-owned business, and a licensed food company. <br/>
Good experience have led to the satisfactory products you get from our store. Innovation,
hard work, and a goal of excellence honesty have made our company well known in all states.<br/>
With an emphasis on high quality and diversity the contemporary restaurant is the ideal place to find
distinctive food and decorative menu. All items are unique. All quality items ensures that any kind of
selected item you buy has a feeling of luxury.
</p>
<blockquote>“Be yourself! Browse our store and make your own selection of our delicious menu.
All the menu items in this section include free delivery.”</blockquote>
<h1>Todays Special</h1>
</div>
<article>
<h1>One of the most popular pizza ever been sold</h1>
<img src="images/pizza4.jpg" alt="pizza4">
<h2>
<script type="text/javascript">
var date = new Object();
date.todayDate = new Date();
document.write(date.todayDate.toLocaleString());
</script><br/>Mushroom-Avocado Pizza</h2>
<p>Pizza is an oven-baked flat bread generally topped with tomato sauce and cheese.
It is commonly supplemented with a selection of meats, vegetables and condiments.
The term first appeared in 997 AD, "in a Latin text from the southern Italian town
of Gaeta", in Lazio, Central Italy. The modern pizza was invented in Naples, Italy,
and the dish and its variants have since become popular in many areas of the world.
</p>
<p><a href="http://en.wikipedia.org/wiki/Pizza"><b>Read more from wikipedia.</b></a>
</article>
<div id="buffet">
<h1>Our Buffet Prices</h1>
<ul>
<li>Lunch Buffet: $9.99 per person</li>
<li>Dinner Buffet: $10.99 per person</li>
<li>Group (More than 10): $8.99 per person</li>
</ul>
</div>
</section>
<aside>
<h1>Everyday Specials</h1>
<h2>Monday and Tuesday:<br>Pepperoni Pizza</h2>
<img src="images/pizza1.png" alt="Pepperoni Pizza">
<h2>Wednesday & Thursday:<br>Tomato Spices</h2>
<img src="images/pizza6.jpg" alt="prpperoni">
<h2>Friday and Saturday:<br>Buffalo Chicken</h2>
<img src="images/pizza7.jpg" alt="Pepperoni Pizza">
<h2>Sunday:<br>Go Green with avocado</h2>
<img src="images/pizza8_avocado.jpg" alt="Green with avocado">
</aside>
<footer>
<p>© 2015,University Group Organic Pizza Store</p>
</footer>
</body>
</html>