-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
208 lines (198 loc) · 5.45 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="yasuaki640のポートフォリオサイト" />
<link
as="font"
type="font/woff2"
href="./assets/fonts/noto-sans-jp-v52-japanese_latin-regular.woff2"
media="print"
onload="this.media='all'"
/>
<link
as="font"
type="font/woff2"
href="./assets/fonts/noto-sans-jp-v52-japanese_latin-700.woff2"
media="print"
onload="this.media='all'"
/>
<link
rel="stylesheet"
href="./assets/css/reset.css"
media="print"
onload="this.media='all'"
/>
<link
rel="stylesheet"
href="./assets/css/main.css"
media="print"
onload="this.media='all'"
/>
<title>yasuaki640のポートフォリオサイト</title>
</head>
<body>
<main>
<section id="top">
<h1>yasuaki640の<wbr />ポートフォリオサイト</h1>
<h2 id="page-view-counter"></h2>
<figure id="portrait">
<img
src="./assets/images/portrait.webp"
alt="yasuaki640's portrait"
width="193"
height="193"
decoding="async"
/>
<figcaption>yasuaki640の近影</figcaption>
</figure>
</section>
<section id="about">
<h2>自己紹介</h2>
<p>yasuaki640は日本に住む日本人プログラマー。</p>
<p>父は日本人で母は日本人。</p>
<p>
Webアプリのバックエンドやフロントエンドの設計や、CI/CD整備などの開発環境改善に勤しんでいる。
</p>
</section>
<section id="resume">
<h2>職務経歴書</h2>
<a
href="https://github.com/yasuaki640/yasuaki640.github.io/blob/master/resume.md"
target="_blank"
rel="noopener noreferrer"
>resume.md (GitHub)</a
>
</section>
<nav id="links">
<h2>リンク集</h2>
<ul class="no-bulls">
<li>
<a
href="https://lapras.com/public/yasuaki640"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/icons/lapras.ico"
alt="lapras"
width="16"
height="16"
decoding="async"
loading="lazy"
/>
Lapras
</a>
</li>
<li>
<a
href="https://qiita.com/yasuaki640"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/icons/qiita.png"
alt="qiita"
width="16"
height="16"
decoding="async"
loading="lazy"
/>
Qiita
</a>
</li>
<li>
<a
href="https://zenn.dev/y640"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/icons/zenn.svg"
alt="zenn"
width="16"
height="16"
decoding="async"
loading="lazy"
/>
Zenn
</a>
</li>
<li>
<a
href="https://github.com/yasuaki640"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/icons/github.svg"
alt="github"
width="16"
height="16"
decoding="async"
loading="lazy"
/>
GitHub
</a>
</li>
<li>
<a
href="https://twitter.com/yasuaki640"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/icons/twitter.svg"
alt="twitter"
width="16"
height="16"
decoding="async"
loading="lazy"
/>
Twitter
</a>
</li>
<li>
<a
href="https://www.youtube.com/channel/UC91Qyr8LcsyRx-7SyNiaGZw"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/icons/youtube.ico"
alt="youtube"
width="16"
height="16"
decoding="async"
loading="lazy"
/>
Youtube
</a>
</li>
</ul>
</nav>
<section id="motto">
<h2>座右の銘</h2>
<blockquote
cite="https://twitter.com/yasuaki640/status/1641413471819661313"
>
<p>口座の余裕は心の余裕</p>
</blockquote>
</section>
<section id="hobbies">
<h2>趣味</h2>
<ul>
<li>ドラム</li>
<li>ピアノ</li>
<li>ジャズ</li>
<li>プログレメタル</li>
</ul>
</section>
</main>
<footer>
<small> Copyright © 2024 yasuaki640. All Rights Reserved. </small>
</footer>
</body>
<script type="text/javascript" src="assets/js/increment-count.js"></script>
</html>