-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (81 loc) · 3.68 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Demo Website #3</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- the header -->
<header>
<!-- our main logo -->
<a id="logo" href="index.html">
<img src="avatar.jpeg" alt="Logo">
<span>HOME</span>
</a>
<!-- main navigation links -->
<nav>
<ul>
<li><a href="#">Restaurants</a></li>
<li><a href="#">Register</a></li>
<li><a href="#">Log In</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
</header>
<section class="head_section">
<div class="head_wrapper">
<h1>THE FOOD YOU LOVE</h1>
<h2>India's Best Online Food Ordering Website</h2>
<form class="form_code">
<input class="pin_code" type="text" placeholder="Enter your Pin code">
<a href="#">Find Food</a>
</form>
</div>
</section>
<section class="products">
<div class="product_item1">
<img class="img-responsive" src="food1.jpg" alt="">
<h2 class="product_heading">
<a href="#">Food 1</a>
</h2>
<p>Flavorsome indicates good tasting, full of flavor, specifically pleasant flavor; implying delicious, tasty, appetizing, scrumptious, yummy, juicy, succulent, heavenly, inviting, luscious, mouthwatering, palatable, saporous and tempting</p>
</div>
<div class="product_item2">
<img class="img-responsive" src="food2.jpg" alt="">
<h2 class="product_heading">
<a href="#">Food 2</a>
</h2>
<p>Flavorsome indicates good tasting, full of flavor, specifically pleasant flavor; implying delicious, tasty, appetizing, scrumptious, yummy, juicy, succulent, heavenly, inviting, luscious, mouthwatering, palatable, toothsome, and tempting.</p>
</div>
<div class="product_item3">
<img class="img-responsive" src="food3.jpg" alt="">
<h2 class="product_heading">
<a href="#">Food 3</a>
</h2>
<p>Flavorsome indicates good tasting, full of flavor, specifically pleasant flavor; implying delicious, tasty, appetizing, scrumptious, yummy, juicy, succulent, heavenly, inviting, luscious, mouthwatering, palatable, saporous, savory.</p>
</div>
<div class="product_item4">
<img class="img-responsive" src="food4.jpg" alt="">
<h2 class="product_heading">
<a href="#">Food 4</a>
</h2>
<p>Flavorsome indicates good tasting, full of flavor, specifically pleasant flavor; implying delicious, tasty, appetizing, scrumptious, yummy, juicy, succulent, heavenly, inviting, luscious, mouthwatering, palatable, saporous, savory; may be divine, toothsome, and tempting.</p>
</div>
<div class="product_item5">
<img class="img-responsive" src="food5.jpeg" alt="">
<h2 class="product_heading">
<a href="#">Food 5</a>
</h2>
<p>Flavorsome indicates good tasting, full of flavor, specifically pleasant flavor; implying delicious, tasty, appetizing, scrumptious, yummy, juicy, succulent, heavenly, inviting, luscious, mouthwatering, palatable, saporous, savory; may be divine, toothsome, and tempting.</p>
</div>
<div class="product_item6">
<img class="img-responsive" src="food6.jpg" alt="">
<h2 class="product_heading">
<a href="#">Food 6</a>
</h2>
<p>Flavorsome indicates good tasting, full of flavor, specifically pleasant flavor; implying delicious, tasty, appetizing, scrumptious, yummy, juicy, succulent, heavenly, inviting, luscious, mouthwatering, palatable, saporous, savory; may be divine, toothsome, and tempting.</p>
</div>
</section>
</body>
</html>