-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (56 loc) · 3.67 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="ja">
<head>
<link href="style.css" rel="stylesheet" media="only screen and (min-width:1000px) and (max-width:3000px)">
<link href="style_sp.css" rel="stylesheet" media="only screen and (max-width:999px)">
</head>
<body>
<div id="all">
<header>
<meta charset="UTF-8">
<title>プロジェクトG</title>
<h1>プロジェクトG</h1>
</header>
<section>
<h2>ようこそ</h2>
<p>このサイトではスライドパズル、タイピングゲーム、モグラ叩き、ブロック崩しの4つのミニゲームをすることができます</p>
<h2>ミニゲーム一覧</h2>
<nav class="button">
<input type="image" src="img/スライドパズル.png" width="200" height="200" alt="スライドパズル"
onmouseover="this.src='img/スライドパズル_h.png'" onmouseout="this.src='img/スライドパズル.png'"
onclick="window.location = './pazzle/index.html';" />
<input type="image" src="img/タイピングゲーム.png" width="200" height="200" alt="タイピングゲーム"
onmouseover="this.src='img/タイピングゲーム_h.png'" onmouseout="this.src='img/タイピングゲーム.png'"
onclick="window.location = './typing/typing.html';" />
<input type="image" src="img/モグラ叩き.png" width="200" height="200" alt="モグラ叩き"
onmouseover="this.src='img/モグラ叩き_h.png'" onmouseout="this.src='img/モグラ叩き.png'"
onclick="window.location = './mogura/index.html';" />
<input type="image" src="img/ブロック崩し.png" width="200" height="200" alt="ブロック崩し"
onmouseover="this.src='img/ブロック崩し_h.png'" onmouseout="this.src='img/ブロック崩し.png'"
onclick="window.location = './blockKuzushi/BlockKuzushi.html';" />
</nav>
<nav class="spbutton">
<ul>
<li><input type="image" src="img/スライドパズル.png" width="200" height="200" alt="スライドパズル"
onmouseover="this.src='img/スライドパズル_h.png'" onmouseout="this.src='img/スライドパズル.png'"
onclick="window.location = './pazzle/index.html';" />
<input type="image" src="img/タイピングゲーム.png" width="200" height="200" alt="タイピングゲーム"
onmouseover="this.src='img/タイピングゲーム_h.png'" onmouseout="this.src='img/タイピングゲーム.png'"
onclick="window.location = './typing/typing.html';" />
</li>
<li><input type="image" src="img/モグラ叩き.png" width="200" height="200" alt="モグラ叩き"
onmouseover="this.src='img/モグラ叩き_h.png'" onmouseout="this.src='img/モグラ叩き.png'"
onclick="window.location = './mogura/index.html';" />
<input type="image" src="img/ブロック崩し.png" width="200" height="200" alt="ブロック崩し"
onmouseover="this.src='img/ブロック崩し_h.png'" onmouseout="this.src='img/ブロック崩し.png'"
onclick="window.location = './blockKuzushi/BlockKuzushi.html';" />
</li>
</ul>
</nav>
</section>
<footer>
<p><small>©2023</small></p>
</footer>
</div>
</body>
</html>