-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (89 loc) · 3.47 KB
/
Copy pathindex.html
File metadata and controls
98 lines (89 loc) · 3.47 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Asian's Kitchen Menu</title>
<link
href="https://fonts.googleapis.com/css2?family=Great+Vibes&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=PT+Serif+Caption:ital@0;1&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Sigmar&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href=" https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
/>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Crect width='64' height='64' fill='%23f44336' rx='10' /%3E%3Ctext x='50%25' y='50%25' font-size='34' text-anchor='middle' dominant-baseline='central'%3E%F0%9F%8D%9C%3C/text%3E%3C/svg%3E">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- As a link -->
<nav class="navbar .bg-light-subtle">
<div class="container-fluid justify-content-center">
<span>Asian Kitchen's Menu</span>
</div>
</nav>
<!-- As a heading -->
<nav class="navbar " id="nav2" style="background-color: rgb(252, 253, 232);" >
<div class="container-fluid justify-content-center" >
<div id="category-buttons">
<button id="all">All</button>
<button id="korea">Korea</button>
<button id="japan">Japan</button>
<button id="china">China</button>
</div>
</div>
</nav>
<!--carousels-->
<div id="carousels" class="carousel slide " data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="images/japan.jpg"
class="d-block w-100 "
alt="japaneseFood"
/> <div id="imgDesc"><h1>Japanese Food</h1> <p> Experience the taste of Japan's rich culinary culture</p> </div>
</div>
<div class="carousel-item">
<img
src="images/chinese.jpg"
class="d-block w-100 "
alt="ChineseFood"
/> <div id="imgDesc"><h1>Chinese Food</h1>
<p> Each bite brings the essence of China to your table</p> </div>
</div>
<div class="carousel-item">
<img
src="images/korean.jpg"
class="d-block w-100 "
alt="..."
/> <div id="imgDesc"><h1>Korean Food</h1>
<p> Immerse yourself in the vibrant tastes of Korea</p> </div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carousels"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carousels"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!--As a container menu ıtems-->
<div class="container mt-4">
<div class="row" id="menuContainer"></div>
</div>
<script src=" https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="app.js"></script>
</body>
</html>