-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 1.41 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>賑やかで楽しいウェブサイト</title>
<link rel="stylesheet" href="styles.css">
<script src="scripts.js" defer></script>
</head>
<body>
<header>
<h1>ようこそ!賑やかで楽しいウェブサイトへ!</h1>
</header>
<nav>
<ul>
<li><a href="#fun-facts">楽しい事実</a></li>
<li><a href="#games">ゲーム</a></li>
<li><a href="#jokes">ジョーク</a></li>
</ul>
</nav>
<main>
<section id="fun-facts">
<h2>楽しい事実</h2>
<p>知っていましたか?猫は約100種類の音を出すことができますが、犬は約10種類しか出せません。</p>
</section>
<section id="games">
<h2>ゲーム</h2>
<p><a href="https://example.com/game1">ゲーム1</a>:楽しいパズルゲームを試してみましょう!</p>
<p><a href="https://example.com/game2">ゲーム2</a>:アクションゲームでアドレナリンを感じよう!</p>
</section>
<section id="jokes">
<h2>ジョーク</h2>
<p>質問:パンダは何を食べるのが好きですか?</p>
<p>答え:パン(だ)!</p>
</section>
</main>
<footer>
<p>© 2023 賑やかで楽しいウェブサイト. All rights reserved.</p>
</footer>
</body>
</html>