-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
166 lines (154 loc) · 5.56 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
<!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" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- CSS -->
<link rel="stylesheet" href="./css/index.css" />
<title>Foods Website</title>
</head>
<body>
<!-- navbar -->
<nav class="navbar target">
<a href="#" class="navbar-link">
<i class="fas fa-home"></i>
<span>home</span>
</a>
<a href="#" class="navbar-link">
<i class="fas fa-utensils"></i>
<span>utensils</span>
</a>
<a href="#" class="navbar-link">
<i class="fas fa-hamburger"></i>
<span>Burger</span>
</a>
<a href="#" class="navbar-link">
<i class="fas fa-pizza-slice"></i>
<span>Pizza</span>
</a>
<a href="#" class="navbar-link">
<i class="fas fa-blender-phone"></i>
<span>Contact</span>
</a>
<div class="menu target"></div>
</nav>
<!-- end navbar -->
<div class="container">
<!-- header -->
<header class="header">
<h1 class="heading">Variety of Foods</h1>
<div class="icons">
<i class="fas fa-egg change"></i>
<i class="fas fa-stroopwafel"></i><i class="fas fa-cheese"></i
><i class="fas fa-hotdog"></i><i class="fas fa-drumstick-bite"></i
><i class="fas fa-apple-alt"></i><i class="fas fa-ice-cream"></i
><i class="fas fa-fish"></i><i class="fas fa-cookie"></i>
<i class="fas fa-seedling"></i>
</div>
</header>
<!-- end header -->
<!-- cards section -->
<section class="cards">
<h1 class="heading">popular meals</h1>
<div class="cards-container">
<div class="card">
<img src="./images/card-img-1.png" alt="card" />
<h3 class="title">Fish</h3>
<button class="btn">Order now</button>
</div>
<div class="card">
<img src="./images/card-img-2.png" alt="card" />
<h3 class="title">Cake</h3>
<button class="btn">Order now</button>
</div>
<div class="card">
<img src="./images/card-img-3.png" alt="card" />
<h3 class="title">Lobster</h3>
<button class="btn">Order now</button>
</div>
</div>
</section>
<!-- end cards section -->
<!-- gallery -->
<section class="gallery">
<h1 class="heading">Gallery</h1>
<div class="items">
<a href="#" class="link" title="Order Now">
<img src="./images/gallery-img-1.jpg" alt="gallery" class="img" />
<h3 class="name">Pancakes</h3>
<p class="description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Deserunt,
veniam?
</p>
</a>
<a href="#" class="link" title="Order Now">
<img src="./images/gallery-img-2.jpg" alt="gallery" class="img" />
<h3 class="name">Cupcakes</h3>
<p class="description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Deserunt,
veniam?
</p>
</a>
<a href="#" class="link" title="Order Now">
<img src="./images/gallery-img-3.jpg" alt="gallery" class="img" />
<h3 class="name">Hummus</h3>
<p class="description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Deserunt,
veniam?
</p>
</a>
<a href="#" class="link" title="Order Now">
<img src="./images/gallery-img-4.jpg" alt="gallery" class="img" />
<h3 class="name">Hamburger</h3>
<p class="description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Deserunt,
veniam?
</p>
</a>
<a href="#" class="link" title="Order Now">
<img src="./images/gallery-img-5.jpg" alt="gallery" class="img" />
<h3 class="name">Salmon</h3>
<p class="description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Deserunt,
veniam?
</p>
</a>
<a href="#" class="link" title="Order Now">
<img src="./images/gallery-img-6.jpg" alt="gallery" class="img" />
<h3 class="name">Vegetables</h3>
<p class="description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Deserunt,
veniam?
</p>
</a>
</div>
</section>
<!-- end gallery -->
<!-- footer -->
<footer class="footer">
<div class="content">
<h2 class="title">Sign Me UP</h2>
<p class="paragraph">Be the first to know about new products</p>
</div>
<form class="signup-form">
<input type="email" class="input" placeholder="enter your email" />
<button type="submit" class="btn">
<i class="fas fa-arrow-right"></i>
</button>
</form>
<p class="copyright">Ikramdev © All rights reserved</p>
</footer>
<!-- end footer -->
</div>
<script src="./script.js"></script>
</body>
</html>