-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (70 loc) · 2.06 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
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>モヤシ・ギャラクシー サポートページ</title>
<style>
body {
background: linear-gradient(180deg, #0b3d91 0%, #3760ff 100%);
font-family: Arial, sans-serif;
color: white;
margin: 0;
padding: 0;
}
header {
background-color: rgba(0, 0, 0, 0.5);
padding: 20px;
text-align: center;
}
header h1 {
font-size: 2.5em;
margin: 0;
}
main {
padding: 40px;
}
h2 {
font-size: 2em;
border-bottom: 2px solid white;
padding-bottom: 10px;
}
p {
font-size: 1.2em;
line-height: 1.5;
margin-bottom: 30px;
}
a {
color: #ffd700;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
background-color: rgba(0, 0, 0, 0.5);
padding: 20px;
text-align: center;
font-size: 1.2em;
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<header>
<h1>モヤシ・ギャラクシー</h1>
</header>
<main>
<h2>ゲーム紹介</h2>
<p>ミニゲーム「モヤシ・ギャラクシー」では、小惑星を避けながら、宇宙に漂うモヤシを必死に拾い集めるUFOを操作しましょう。宇宙のパワーを受けて育った、特別なモヤシも存在するらしい。</p>
<h2>サポート</h2>
<p>サポートが必要な場合は、以下の連絡先までお問い合わせください。</p>
<p>Email: <a href="mailto:topitopi34@gmail.com">こちら</a></p>
</main>
<footer>
<p>© 2023 モヤシ・ギャラクシー. All rights reserved.</p>
</footer>
</body>
</html>