-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
88 lines (84 loc) · 3.42 KB
/
about.html
File metadata and controls
88 lines (84 loc) · 3.42 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>yuki kawai Portfolio | Digital Product Designer</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/destyle.css@1.0.15/destyle.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="./img/prof_me.jpg" type="image/jpeg">
</head>
<body>
<header>
<ul>
<li><a href="./index.html">Works</a></li>
<span> / </span>
<li><a href="./about.html" class="active">About</a></li>
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none">
<circle cx="6" cy="6" r="6" fill="black"/>
</svg>
</ul>
</header>
<div class="about-wrapper">
<div class="about-image">
<img src="./img/about-yukikawai.jpg" alt="">
</div>
<div class="about-introduce">
<h3>河合 佑希(かわいゆき)</h3>
<p>プロダクトデザイナー / サービスデザイナー</p>
<p>デジタルプロダクトのデザインを主軸に、プロダクトの価値と理想的なユーザー体験を考えていく活動をしています。<br>
不確実性が高いかつ複雑な課題を整理していくことと、スピード感のあるチームでプロダクト開発をするのが好きです。</p>
<div class="contact-labels">
<div class="contact-label">
<a href="mailto:snowyk2516@gmail.com">
<img src="./img/mail.svg" class="icon-mail" width="12" height="12"> </img>
mail
<img src="./img/arrow.svg" class="icon-arrow" width="8" height="8"> </img>
</a>
</div>
<div class="contact-label">
<a href="https://x.com/snowyk25" target="_blank">
<img src="./img/x.svg" class="icon-x" width="12" height="12"> </img>
@snowyk25
<img src="./img/arrow.svg" class="icon-arrow" width="8" height="8"> </img>
</a>
</div>
</div>
</div>
<div class="about-education about-section">
<h4>Education</h4>
<table>
<tr>
<th>2019.03</th>
<td>慶應義塾湘南藤沢高等部 卒業</td>
</tr>
<tr>
<th>2024.03</th>
<td>慶應義塾大学理工学部情報工学科 卒業</td>
</tr>
</table>
</div>
<div class="about-experience about-section">
<h4>Experience</h4>
<table>
<tr>
<th>2023 - 2024</th>
<td>ソーシャルデータバンク株式会社</td>
</tr>
<tr>
<th>2023 - now</th>
<td>株式会社meing</td>
</tr>
<tr>
<th>2024 - 2025</th>
<td>サイボウズ株式会社</td>
</tr>
</table>
</div>
</div>
<footer>
<p>© 2025 Yuki Kawai | Digital Product Designer</p>
</footer>
</body>
<script src="js/loader.js"></script>
</html>