-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
178 lines (160 loc) · 5.2 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="img/ghost-solid.svg" type="image/x-icon">
<script src="https://kit.fontawesome.com/16d365cb18.js" crossorigin="anonymous"></script>
<title>Foods</title>
</head>
<body>
<!-- Nav Bar -->
<header >
<h4>Foods</h4>
<input type="checkbox" id="check">
<label for="check" class="mostrar-menu">
<i class="fa-solid fa-bars"></i>
</label>
<nav class="navbar-menu">
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#menu">Menu</a>
<a href="#services">Service</a>
<a href="#contact">Contact</a>
<label for="check" class="esconder-menu">
<i class="fa-solid fa-x"></i>
</label>
</nav>
</header>
<!-- Home -->
<section id="home" class="content home">
<div>
<h1>Full Website</h1>
<p>Foods the <br> Most precious thing
</p>
<button>Today's Menu</button>
</div>
<div>
<img src="img/home.png" alt="Home">
</div>
</section>
<!-- About Us -->
<section id="about" class="content about">
<div class="order-1">
<img src="img/about.png" alt="About">
</div>
<div class="text">
<h5>About Us</h5>
<h3>We speak the good <br> food language</h3>
<p>
It is a long established <br>
be distracted by the readable <br>
looking at this layout
</p>
<button>learn more</button>
</div>
</section>
<!-- Menu -->
<div class="text-menu">
<p id="menu"></p>
<h5>food Menu</h5>
<h3>Fresh taste and grat price</h3>
</div>
<section id="menu" class="content menu">
<div class="food1">
<i class="fa-solid fa-cart-shopping"></i>
<img src="img/food1.png" alt="Food 1">
<h5>chiken Burger</h5>
<p>Tasty Food</p>
<span>$11.00</span>
</div>
<div class="food2">
<i class="fa-solid fa-cart-shopping"></i>
<img src="img/food2.png" alt="Food 2">
<h5>Special Beef Burger</h5>
<p>Tasty Food</p>
<span>$11.00</span>
</div>
<div class="food3">
<i class="fa-solid fa-cart-shopping"></i>
<img src="img/food3.png" alt="Food 3">
<h5>chiken Fry Pack</h5>
<p>Tasty Food</p>
<span>$11.00</span>
</div>
</section>
<!-- Services -->
<div class="text-menu">
<p id="services"></p>
<h5>Services</h6>
<h3 >We provide best food services</h1>
</div>
<section class="content services">
<div class="service1">
<img src="img/s1.png" alt="Service 1">
<h4>Order</h4>
<p> It is a long established <br>
be distracted by the readable <br>
looking at this layout
</p>
</div>
<div class="service2">
<img src="img/s2.png" alt="Service 2">
<h4>shipping</h4>
<p>
It is a long established <br> be distracted by the readable <br>
looking at this layout
</p>
</div>
<div class="service3">
<img src="img/s3.png" alt="Service 3">
<h4>Dellvered</h4>
<p>It is a long established <br> be distracted by the readable <br>
looking at this layout</p>
</div>
</section>
<!-- Info -->
<section class="content info">
<div class="text">
<p> We make quality food <br> Everyday </p>
<button>Learn More</button>
</div>
</section>
<!-- Footer -->
<footer id="contact">
<div class="footer-text">
<h3>Home Links</h3>
<a href="">Home</a>
<a href="">About </a>
<a href="">Menu</a>
<a href="">Service</a>
<a href="">Contact</a>
</div>
<div class="footer-text">
<h3>Our Service</h3>
<a href="">Web Desing</a>
<a href="">Web Development</a>
<a href="">Marketing</a>
<a href=""> Product Magnament </a>
<a href=""> Graping Desing</a>
</div>
<div class="footer-text">
<h3>information</h3>
<a href="">About Us</a>
<a href=""> Delivery Information </a>
<a href=""> Privacy policy </a>
<a href=""> Terms & Conditions </a>
</div>
<div class="footer-text">
<div class="links">
<h3>Contact Us</h3>
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-whatsapp"></i>
</div>
</div>
</footer>
</body>
</html>