-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
79 lines (56 loc) · 2.39 KB
/
home.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ジャパンサーチを用いた画像4択クイズ</title>
<link rel="stylesheet" media="screen" href="home.css" />
</head>
<body>
<header class="header__flex">
<h2>4択クイズ</h2>
<button class="Materials-button" aria-current="page" onclick="location.href='https://docs.google.com/presentation/d/1gdUBhjP5TL9nISUCsCIGTS9OZoIMeWqg_Kk5o-TwagQ/edit#slide=id.p'">詳細資料</button>
</header>
<p>ゼミで作成したクイズの選択ページです。
サイトに関する情報は「詳細資料」からご覧になれます。</p>
<hr />
<div class="image-container">
<!-- 歴史人物クイズに関する記述-->
<div class="game">
<a href="歴史人物クイズ/quize.html">
<img class="img" src="home_img/rekisi.png" alt="歴史人物クイズの画像" />
</a>
<h3 class="game_title">歴史人物クイズ</h3>
</div>
<!-- 絵画クイズに関する記述-->
<div class="game">
<a href="絵画クイズ/kaiga.html">
<img class="img" src="home_img/kaiga.png" alt="絵画クイズの画像" />
</a>
<h3 class="game_title">絵画クイズ</h3>
</div>
<!-- 絵画クイズに関する記述-->
<div class="game">
<a href="刀剣クイズ/刀.html">
<img class="img" src="home_img/touken.png" alt="刀剣クイズの画像" />
</a>
<h3 class="game_title">刀剣クイズ</h3>
</div>
<!-- 仏像クイズに関する記述-->
<div class="game">
<a href="仏像クイズ/butsuzo.html">
<img class="img" src="home_img/daibutsu_nara_.png" alt="仏像クイズの画像" />
</a>
<h3 class="game_title">仏像クイズ</h3>
</div>
<!-- 焼き物(陶磁)クイズに関する記述-->
<div class="game">
<a href="焼き物(陶磁)クイズ/yakimono.html">
<img class="img" src="home_img/chousen_karatsu.png" alt="焼き物(陶磁)クイズの画像" />
</a>
<h3 class="game_title">焼き物(陶磁)クイズ</h3>
</div>
<!-- ここに各自リンクと画像を記載してください。-->
<script src="home.js"></script>
</body>
</html>