This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 478
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.87 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header>
<h1>My Website</h1>
<p>Welcome to my website!</p>
</header>
<main>
<article class="first">
<h2>Introduction to Japanese cuisine</h2>
<p>This article can provide an overview of the different types of Japanese cuisine, such as sushi, ramen, tempura, and yakitori, and explain what makes them unique and popular around the world..</p>
<a href="#">Read More</a>
</article>
<div>
<img src="/sushi1.jpg" alt="sushi">
</div>
<article>
<h2>The art of sushi-making</h2>
<p>This article can explore the intricate process of making sushi, from selecting the right ingredients to preparing the perfect rice and slicing the fish. It can also discuss the different types of sushi, such as nigiri, maki, and sashimi.</p>
<a href="#">Read More</a>
</article>
<div>
<img src="/sushi2.jpg" alt="sashimi">
</div>
<article>
<h2>Japanese street food</h2>
<p>Japanese street food is a popular and affordable way to sample a variety of Japanese flavors. This article can highlight some of the most popular Japanese street foods, such as yakitori, takoyaki, and taiyaki, and explore their history and cultural significance.</p>
<a href="#">Read More</a>
</article>
</main>
<footer>
<p>© 2023 Stella Del Mar and ChatGPT</p>
</footer>
</body>
</html>