-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
99 lines (83 loc) · 2.84 KB
/
menu.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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Menu</title>
<link href="menu.css" rel="stylesheet" type="text/css" />
</head>
<!-- Header Section Starts -->
<header>
<!-- LOGO -->
<section>
<a href="#" class="logo"><i class="fas-fa-untensils"></i>AZN CHICK WING</a>
</section>
<!-- Navbar Home Menu Contact -->
<section>
<nav class="navbar ">
<a class="active" href="home.html">home</a>
<a href="menu.html">menu</a>
<a href="contact.html">contact</a>
</nav>
</section>
</header>
<!-- Header Section Ends -->
<!-- Menu -->
<body>
<section class="menu-list">
<!-- Garlic Soy -->
<article class="menu-item">
<img class="food-image" src="Photos/garlic.png" alt="Garlic Soy Chicken Wing" width="300px" height="300px">
<h1>Garlic Soy Chicken Wing</h1>
<br>
<p>$5.99</p>
<button>Add to Cart</button>
</article>
<!-- Honey Sriracha -->
<article class="menu-item">
<img class="food-image" src="Photos/honeys.png" alt="Honey Sriracha Chicken Wing" width="300px" height="300px">
<h1>Honey Sriracha Chicken Wing</h1>
<br>
<p>$5.99</p>
<button>Add to Cart</button>
</article>
<!-- Sweet Chili -->
<article class="menu-item">
<img class="food-image" src="Photos/sweetchili.png" alt="Sweet Chili Chicken Wing" width="300px" height="300px">
<h1>Sweet Chili Chicken Wing</h1>
<br>
<p>$5.99</p>
<button>Add to Cart</button>
</article>
<!-- Korean Gochujang -->
<article class="menu-item">
<img class="food-image" src="Photos/KG.png" alt="Korean Gochujang Chicken Wing" width="300px" height="300px">
<h1>Korean Gochujang Chicken Wing</h1>
<br>
<p>$5.99</p>
<button>Add to Cart</button>
</article>
<!-- Salt And Pepper -->
<article class="menu-item">
<img class="food-image" src="Photos/SP.png" alt="Salt And Pepper Chicken Wing" width="300px" height="300px">
<h1>Salt And Pepper Chicken Wing</h1>
<br>
<p>$5.99</p>
<button>Add to Cart</button>
</article>
<!-- Fish Sauce (Pok Pok) -->
<article class="menu-item">
<img class="food-image" src="Photos/fishyfish.jpeg" alt="Fish Sauce (Pok Pok) Chicken Wing" width="300px" height="300px">
<h1>Fish Sauce (Pok Pok) Chicken Wing</h1>
<br>
<p>$5.99</p>
<button>Add to Cart</button>
</article>
</section>
</body>
<!--Footer -->
<footer>
<!-- Facebook -->
<a href="https://www.facebook.com" aria-label="Facebook" target="_blank"><img width="60" height="60" src="Photos/FB.png" alt="facebook logo"></a>
<!-- Instagram -->
<a href="https://www.instagram.com" aria-label="Instagram" target="_blank"><img width="60" height="60" src="Photos/IG.jpg" alt="instagram logo"></a>
</footer>