-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirstpage.html
More file actions
49 lines (39 loc) · 1.44 KB
/
firstpage.html
File metadata and controls
49 lines (39 loc) · 1.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Lobster&family=Pacifico&family=Poppins:wght@600&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Food Menu</title>
<link rel="stylesheet" href="fp.css">
</head>
<body>
<div class="container">
<header>
<h1>#SAMB Cafe</h1>
</header>
<p>Explore our delicious menu categories</p>
<div class="tabs">
<a href="smart-cafe.html?category=menu-section" class="tab">
<img src="img3.avif" alt="Main Course">
<span>Main Course</span>
</a>
<a href="beverages.html" class="tab">
<img src="img2.avif" alt="Beverages">
<span>Beverages</span>
</a>
<a href="snacks.html" class="tab">
<img src="img1.jpeg" alt="Snacks">
<span>Snacks</span>
</a>
<a href="desserts.html" class="tab">
<img src="img4.webp" alt="Desserts">
<span>Desserts</span>
</a>
<a href="hot deals.html" class="tab">
<img src="https://d1rgpf387mknul.cloudfront.net/products/PLP/web/2x_web_20240807053858778375_482x264jpg" alt="Trending And Hot Deals">
<span>Trending And Hot Deals</span>
</a>
</div>
</body>
</html>