-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (109 loc) · 3.82 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
<!DOCTYPE html>
<html>
<head>
<title>My Food</title>
<meta charset="utf-8">
<meta name="description" content="Spicy Food Zone">
<meta name="keywords" content="HTML,CSS,HTML5">
<meta name="author" content="Raju Sunkara">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="css/Vendorcss/960.css">
<link href='https://fonts.googleapis.com/css?family=Sofia' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Amita' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Atomic Age' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Baumans' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Croissant One' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Andada' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Here navbar is fixed navigation bar and Two img src for heading in navigation bar-->
<div class="navbar">
<nav>
<ul>
<li><a href="##">Home</a></li>
<li><a href="##">About Us</a></li>
<li><a href="##">Food Items</a></li>
<li><a href="##">Contact Us</a></li>
<li><img id="navimg1" src="images/spicy.png" alt="Spicy"><img id="navimg2" src="images/food.png" alt="Food"></li>
</ul>
</nav>
</div>
<!--Here creating one Row division with Three colomns-->
<div class="container_12">
<div id="section1" class="grid_4">
<section>
<img src="images/pizza.jpeg" alt="Pizza">
<a href="3">Hot Pizza</a>
<p> Pizza is a yeasted flatbread typically topped with tomato sauce and cheese and baked in an oven.
</p>
</section>
</div>
<div id="section2" class="grid_4">
<section>
<img src="images/samosa.jpeg" alt="samosa">
<span><a href="3">Veg Samosa</a></span>
<p> The Mixed Vegetable Samosa.</p>
</section>
</div>
<div id="section3" class="grid_4" >
<section>
<img src="images/puff.jpeg" alt="Puff">
<a href="#">Veg Puff</a>
<p>
A snack with crisp-n-flaky outer layer and mixed vegetables stuffing
</p>
</section>
</div>
</div>
<!--Here creating one Herounit-->
<div class="herounit">
<section>
<figure>
<img src="images/chicken1.jpg" alt="Chicken Biryani">
<figcaption><a href="2"><h3>Spicy Chicken Biryani</h3></a></figcaption>
</figure>
</section>
</div>
<!--Here creating one Row division with Two colomns-->
<div class="container_12">
<div id="section4" class="grid_6">
<section>
<img src="images/lemon.jpg" alt="Lemon Rice">
<span><a href="3">Tasty Lemon Rice</a></span>
<p>
</p>
</section>
</div>
<!--Here creating Three rows in a division-->
<div id="section5" class="grid_6">
<section>
<div class="row3col1">
<img src="images/zone.JPG">
</div>
<div class="row3col2">
<h><p>"Spicy Food zone, one of the famous destination in the City for Food-Holics. Not just known for the amazing taste but also for authentic style of cooking and Infrastructure".</p></h4>
</div>
<div class="row3col3">
<h4>Address;</h4>
<p>Maratha halli<br>
Bangalore<br>
Karnataka</p>
</div>
</section>
</div>
</div>
<!--Here creating a footer class-->
<div class="footer">
<footer>
<h2>Visit Us for the Best Quality Food
<a href="#twitter" ><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="#facebook" ><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="#linkedin" ><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</h2>
<h4>© Copyright 2017, All Rights Reserved</h4>
</footer>
</div>
</body>
</html>