-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
185 lines (176 loc) · 8.12 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html lang="ja">
<head>
<title>Top Page</title>
<!-- setting meta data -->
<meta charset="UTF-8"/>
<meta http-equiv="X_UA_Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no" />
<!-- import google font api -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&display=swap" rel="stylesheet" />
<!-- import google font api -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Yomogi&display=swap" rel="stylesheet" />
<!-- import css -->
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/header.css" />
<link rel="stylesheet" href="./css/footer.css" />
<link rel="stylesheet" href="./css/content.css"/>
<link rel="stylesheet" href="./css/aboutme.css"/>
<link rel="stylesheet" href="./css/portfolio.css" />
<link rel="stylesheet" href="./css/blog.css" />
<link rel="stylesheet" href="./css/contact.css" />
</head>
<body>
<!-- import font awsome library -->
<script
src="https://kit.fontawesome.com/f6d11522bd.js"
crossorigin="anonymous"
></script>
<!-- import processing library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/processing.js/1.6.6/processing.min.js"></script>
<script>
//import header section
fetch("./header.html")
.then((response) => response.text())
.then((data) =>
document.querySelector("main").insertAdjacentHTML("afterbegin", data)
);
//import fotter section
fetch("./footer.html")
.then((response) => response.text())
.then((data) =>
document.querySelector("main").insertAdjacentHTML("beforeend", data)
);
</script>
<main>
<!-- content section -->
<div class="content" id="content">
<!-- Processing Section -->
<!-- Document: https://processing.org/examples/storinginput.html -->
<!-- Samples: https://openprocessing.org/browse# -->
<div class="Processing">
<canvas id="canvas"></canvas>
<script type="text/processing" data-processing-target="canvas" src="./js/main.pde"></script>
</div>
<div class="body">
<div class="portfolioInfo">
<h4>ゲームエンジニア</h4>
<h1>Pan <span>KUN</span></h1>
<div class="newslatter">
<form name="contentForm"">
<input type="email" name="address" placeholder="メールアドレス" required/>
<input type="button" name="submit" value="おといあわせ" onclick="getform()"/>
</form>
</div>
</div>
<img src="./Image/Kaguya-Runa.jpg" alt="">
</div>
</div>
<!-- about me section -->
<section class="about">
<div class="main2">
<img src="./Image/Kaguya-Runa.jpg" alt=""/>
<div class="about-text">
<h2>About Me</h2>
<h5>Game Developer & FullStack Engineer</h5>
<p>
私は普段ゲーム会社でクライアントエンジニア、システムエンジニアとして働きながらプライベートでゲーム、ツール、サーバーやデータベース等を作成しています。
</p>
<p>
言語に依存はなく作る目的に合わせて言語を使用しており、そのたびに学習が必要なためある程度の言語は会得しています。
</p>
<a href="./Contact/contact.html" class="button">おといあわせ</a>
</div>
</div>
</section>
<!-- portfolio section -->
<div class="portfolio">
<div class="title"><h2>Portfolio</h2></div>
<div class="box">
<div class="card">
<i class="fa-solid fa-gamepad"></i>
<h5>霊迷の湯</h5>
<div class="pragraph">
<p>開発元: Studio ShiroGorilla</p>
<p>リリース日: 2024/3/8</p>
<p>プラットフォーム: steam</p>
<p>ジャンル: ホラー 8番ライク</p>
<a href="./Portfolio/portfolio.html?pageid=portfolio_0001.md" class="button">ひらく</a>
</div>
</div>
<div class="card">
<i class="fa-solid fa-gamepad"></i>
<h5>クマの逆転プロ野球</h5>
<div class="pragraph">
<p>開発元: まつさん</p>
<p>リリース日: 未定</p>
<p>プラットフォーム: Google Play</p>
<p>ジャンル: カジュアル</p>
<a href="./Portfolio/portfolio.html?pageid=portfolio_0002.md" class="button">ひらく</a>
</div>
</div>
<div class="card">
<i class="fa-solid fa-gamepad"></i>
<h5>Game Developer</h5>
<div class="pragraph">
<p>開発元: test</p>
<p>リリース日: test</p>
<p>プラットフォーム: test</p>
<p>ジャンル: test</p>
<a href="./Portfolio/portfoliohome.html" class="button">ひらく</a>
</div>
</div>
</div>
<div class="end">
<a href="./Portfolio/portfoliohome.html" class="button">もっとみる</a>
</div>
</div>
<hr width="auto" size="5" noshade="">
<!-- bolg section -->
<div class="blog">
<div class="title"><h2>Blog</h2></div>
<div class="box">
<div class="card">
<i class="fa-solid fa-code"></i>
<h5>ブログはじめました!</h5>
<div class="pragraph">
<p>投稿日: ****</p>
<p>ジャンル: 雑談</p>
<a href="./Blog/blog.html?pageid=blog_00001.md" class="button">ひらく</a>
</div>
</div>
<div class="card">
<i class="fa-solid fa-code"></i>
<h5>Unityの共同プロジェクトにOdinを導入する時の注意点</h5>
<div class="pragraph">
<p>投稿日: **** </p>
<p>ジャンル: Unity, 拡張機能, Git</p>
<a href="./Blog/blog.html?pageid=blog_00002.md" class="button">ひらく</a>
</div>
</div>
<div class="card">
<i class="fa-solid fa-code"></i>
<h5>Modoium Remote 導入してみた</h5>
<div class="pragraph">
<p>投稿日: ****</p>
<p>ジャンル: Unity, 拡張機能</p>
<a href="./Blog/bloghome?pageid=blog_00004.html" class="button">ひらく</a>
</div>
</div>
</div>
<div class="end">
<a href="./Blog/bloghome.html">もっとみる</a>
</div>
</div>
<!-- contact section -->
<div class="contact">
<p>Contact</p>
<a href="./Contact/contact.html" class="contact-buttom">おといあわせ</a>
</div>
</main>
</body>
</html>