-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (95 loc) · 3.16 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
<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">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans&family=Open+Sans:wght@500&display=swap" rel="stylesheet">
<title>Fooder | Home</title>
</head>
<body>
<header>
<a class="logo" href="index.html">FOODER</a>
<ul>
<li><a href="#">My Orders</a></li>
<li><a href="#">Browse Meals</a></li>
</ul>
<a href="#sideBar" class="navbar">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
</header>
<aside id="sideBar">
<a href="index.html" class="navbar">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<ul>
<li><a href="#">My Orders</a></li>
<li><a href="#">Browse Meals</a></li>
</ul>
</aside>
<main>
<center><h2>Browse our Delicious Meals</h2></center>
<ul>
<li>
<article>
<img src="img/burger.webp" alt="no preview">
</article>
<div>
<p class="food_content">Cheese Burger</p>
<a href="#" class="btn">Add to Cart</a>
</div>
</li>
<li>
<article>
<img src="img/pizza.jpg" alt="no preview">
</article>
<div>
<p class="food_content">Cheese Pizza</p>
<a href="#" class="btn">Add to Cart</a>
</div>
</li>
<li>
<article>
<img src="img/fries.webp" alt="no preview">
</article>
<div>
<p class="food_content">French Fries</p>
<a href="#" class="btn">Add to Cart</a>
</div>
</li>
<li>
<article>
<img src="img/garlicBread.jpg" alt="no preview">
</article>
<div>
<p class="food_content">Garlic Bread</p>
<a href="#" class="btn">Add to Cart</a>
</div>
</li>
<li>
<article>
<img src="img/pasta.jpg" alt="no preview">
</article>
<div>
<p class="food_content">Pasta</p>
<a href="#" class="btn">Add to Cart</a>
</div>
</li>
<li>
<article>
<img src="img/rolls.jpg" alt="no preview">
</article>
<div>
<p class="food_content">Spring Rolls</p>
<a href="#" class="btn">Add to Cart</a>
</div>
</li>
</ul>
</main>
</body>
</html>