-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk-food.html
61 lines (55 loc) · 2.2 KB
/
k-food.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>K-Food Page</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap">
<link rel="stylesheet" href="css/kfood.css">
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="kpop%20album.html">K-Pop Album</a>
<a href="k-drama.html">K-Drama</a>
<a href="k-food.html">K-Food</a>
<a href="kfashion.html">K-Fashion</a>
<a href="login.html">Login</a>
</div>
<!-- Header Section -->
<div class="header">
<h1>Welcome to Korea's Food World</h1>
<p>Korean cuisine is largely based on rice, vegetables, and meats. It's characterized by its use of bold flavors, including spicy, sour, and sweet elements. Fermented foods like kimchi are also staples.</p>
</div>
<!-- Featured Dishes -->
<div class="dishes">
<h2>Popular Korean Dishes</h2>
<div class="dish">
<img src="image/kimchi.webp">
<h2>Kimchi</h2>
<p>Kimchi is a traditional Korean dish made from fermented vegetables, most commonly napa cabbage or radishes, with a variety of seasonings.</p>
</div>
<div class="dish">
<img src="image/Dolsot-bibimbap.jpg">
<h2>Bibimbap</h2>
<p>Bibimbap is a mixed rice dish with vegetables, meats, and a spicy gochujang sauce. It's served in a hot stone bowl and often topped with a fried egg.</p>
</div>
<div class="dish">
<img src="image/bulgogi.webp">
<h2>Bulgogi</h2>
<p>Bulgogi is marinated and grilled beef, often served with rice and vegetables. It's known for its sweet and savory flavors.</p>
</div>
</div>
<!-- Footer -->
<div class="footer">
<p>© 2024 K-Culture. All rights reserved.</p>
<p>
Follow us on
<a href="#">Facebook</a>,
<a href="#">Twitter</a>,
<a href="#">Instagram</a>.
</p>
</div>
</body>
</html>