-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (45 loc) · 1.77 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
<!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">
<script src="https://kit.fontawesome.com/7d29a524be.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./styles.css">
<script src="./app.js" defer></script>
<title>Menu</title>
</head>
<body>
<section class="section">
<!-- title -->
<div class="section-title">
<h2>Our Menu</h2>
</div>
<!-- buttons -->
<div class="btn-container">
<button type="button" class="btn menu-btn" data-id="all">All</button>
<button type="button" class="btn menu-btn" data-id="breakfast">Breakfast</button>
<button type="button" class="btn menu-btn" data-id="lunch" >Lunch</button>
<button type="button" class="btn menu-btn" data-id="coffee">Coffee</button>
</div>
<section class="section-center menu-section">
<!-- start of single menu -->
<article class="single-menu">
<!-- menu image -->
<img src="" alt="" class="menu-img">
<!-- menu-info -->
<div class="menu-info">
<!-- menu item header -->
<div class="menu-text">
<h3 class="menu-name">Fetteccini Pasta</h3>
<h4 class="menu-price">£12.99</h4>
</div>
<!-- menu item description -->
<p class="menu-desc">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Esse voluptatem est laboriosam illo suscipit earum. Doloremque soluta repellendus eos aliquam.</p>
</div>
</article>
<!-- end of single menu -->
</section>
</section>
</body>
</html>