Skip to content

Commit 6122a4d

Browse files
author
y-yamasaki
committed
Merge branch 'develop'
2 parents f1d247c + 374a1a5 commit 6122a4d

File tree

1 file changed

+90
-80
lines changed

1 file changed

+90
-80
lines changed

index.html

Lines changed: 90 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,90 @@
1-
<!doctype html>
2-
<html lang="ja">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>PanKUN | Portal</title>
7-
<meta name="description" content="PanKUNのポータルサイトです。" />
8-
9-
<!-- Google AdSense -->
10-
<script
11-
async
12-
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-XXXXXXXXXXXXXXXX"
13-
crossorigin="anonymous"
14-
></script>
15-
16-
<style>
17-
body {
18-
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
19-
"Hiragino Sans", Meiryo, sans-serif;
20-
margin: 0;
21-
padding: 0;
22-
background-color: #f4f4f4;
23-
color: #333;
24-
display: flex;
25-
flex-direction: column;
26-
min-height: 100vh;
27-
align-items: center;
28-
justify-content: center;
29-
}
30-
.container {
31-
background: white;
32-
padding: 2rem;
33-
border-radius: 8px;
34-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
35-
text-align: center;
36-
max-width: 600px;
37-
width: 90%;
38-
}
39-
h1 {
40-
margin-bottom: 1rem;
41-
font-size: 2rem;
42-
color: #2c3e50;
43-
}
44-
p {
45-
margin-bottom: 1.5rem;
46-
line-height: 1.6;
47-
}
48-
.btn {
49-
display: inline-block;
50-
padding: 0.8rem 1.5rem;
51-
background-color: #3498db;
52-
color: white;
53-
text-decoration: none;
54-
border-radius: 4px;
55-
transition: background-color 0.3s;
56-
font-weight: bold;
57-
}
58-
.btn:hover {
59-
background-color: #2980b9;
60-
}
61-
footer {
62-
margin-top: 2rem;
63-
font-size: 0.8rem;
64-
color: #777;
65-
}
66-
</style>
67-
</head>
68-
<body>
69-
<div class="container">
70-
<h1>Welcome to PanKUN's Portal</h1>
71-
<p>
72-
こんにちは、PanKUNです。<br />
73-
こちらは私のポートフォリオやブログをまとめたポータルページです。<br />
74-
技術記事や制作物の詳細は、メインサイトをご覧ください。
75-
</p>
76-
<a href="./WebSite/index.html" class="btn">メインサイトへ移動</a>
77-
</div>
78-
<footer>&copy; PanKUN. All Rights Reserved.</footer>
79-
</body>
80-
</html>
1+
<!doctype html>
2+
<html lang="ja">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta
6+
name="viewport"
7+
content="width=device-width, initial-scale=1.0"
8+
/>
9+
<title>PanKUN | Portal</title>
10+
<meta
11+
name="description"
12+
content="PanKUNのポータルサイトです。"
13+
/>
14+
15+
<!-- Google AdSense -->
16+
<script
17+
async
18+
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5284984614496391"
19+
crossorigin="anonymous"
20+
></script>
21+
22+
<style>
23+
body {
24+
font-family:
25+
"Helvetica Neue", Arial,
26+
"Hiragino Kaku Gothic ProN",
27+
"Hiragino Sans", Meiryo, sans-serif;
28+
margin: 0;
29+
padding: 0;
30+
background-color: #f4f4f4;
31+
color: #333;
32+
display: flex;
33+
flex-direction: column;
34+
min-height: 100vh;
35+
align-items: center;
36+
justify-content: center;
37+
}
38+
.container {
39+
background: white;
40+
padding: 2rem;
41+
border-radius: 8px;
42+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
43+
text-align: center;
44+
max-width: 600px;
45+
width: 90%;
46+
}
47+
h1 {
48+
margin-bottom: 1rem;
49+
font-size: 2rem;
50+
color: #2c3e50;
51+
}
52+
p {
53+
margin-bottom: 1.5rem;
54+
line-height: 1.6;
55+
}
56+
.btn {
57+
display: inline-block;
58+
padding: 0.8rem 1.5rem;
59+
background-color: #3498db;
60+
color: white;
61+
text-decoration: none;
62+
border-radius: 4px;
63+
transition: background-color 0.3s;
64+
font-weight: bold;
65+
}
66+
.btn:hover {
67+
background-color: #2980b9;
68+
}
69+
footer {
70+
margin-top: 2rem;
71+
font-size: 0.8rem;
72+
color: #777;
73+
}
74+
</style>
75+
</head>
76+
<body>
77+
<div class="container">
78+
<h1>Welcome to PanKUN's Portal</h1>
79+
<p>
80+
こんにちは、PanKUNです。<br />
81+
こちらは私のポートフォリオやブログをまとめたポータルページです。<br />
82+
技術記事や制作物の詳細は、メインサイトをご覧ください。
83+
</p>
84+
<a href="./WebSite/index.html" class="btn"
85+
>メインサイトへ移動</a
86+
>
87+
</div>
88+
<footer>&copy; PanKUN. All Rights Reserved.</footer>
89+
</body>
90+
</html>

0 commit comments

Comments
 (0)