-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (82 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!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.0">
<title>Order Your Food</title>
<link rel="stylesheet" href="ahsan.css">
<link rel="stylesheet" media="" href="responsive.css">
</head>
<body>
<div id="page1">
<header class="container">
<nav id="navbar">
<div class="logo">
<img src="jpg10.png" alt="This is logo">
</div>
<ul class="listitems">
<li class="items" id="items1"><a href="#">Home</a></li>
<li class="items" id="items2"><a href="#">Contact us</a></li>
<li class="items" id="items3"><a href="#">Our Branches</a></li>
<li class="items" id="items4"><a href="#">Food Varities</a></li>
</ul>
</nav>
</header>
<section id="home">
<div id="homecontainer">
<h1 id="heading1"> Welcome To Sahi's Meal </h1>
<p class="homeparagraph"> Lorem ipsum dolor sit amet consectetur adipisicing elit. Quasi perspiciatis
aut </p>
<br>
<p class="homeparagraph"> Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<br>
<button id="btn"> Order Now</button>
</div>
</section>
<section id="section1">
<h1 id="heading2">Welcome Customers</h1>
<div id="paragraph1">
<div class="box1">
<h2 class="boxheading">Variety 1</h2>
<img src="jpg3.jpg" alt="" class="section1pic">
<p class="paragraph1">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam eos voluptate expedita
voluptate
</p>
</div>
<div class="box1">
<h2 class="boxheading">Variety 2</h2>
<img src="jpg4.jpg" alt="" class="section1pic">
<p class="paragraph1">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam eos voluptate expedita
voluptate </p>
</div>
<div class="box1">
<h2 class="boxheading">Variety 3</h2>
<img src="jpg5.jpg" alt="" class="section1pic">
<p class="paragraph1">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam eos voluptate expedita
voluptatem </p>
</section>
</div>
<section id="contact">
<h1 id="heading3"> Contact </h1>
<form action="">
<div id="contactinput">
<label for="name">Name </label>
<input type="text" name="name" id="name" placeholder="Type your name"><br>
<label for="email">Email </label>
<input type="text" name="email" id="email" placeholder="Type your email"><br>
</div>
<label for="address">Address</label>
<input type="text" name="address" id="address" placeholder="Type your Address"><br>
<label for="number">Number</label>
<input type="text" name="number" id="number" placeholder="Type your number"><br>
</form>
</section>
<footer id="footer">
Copyright © www.Order Your Food.com
</footer>
</body>
</html>