-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (79 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mutsumi Ebihara - Portfolio</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #fff8dc;
}
header {
background-color: #ffa500;
color: white;
padding: 1em;
text-align: center;
}
section {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2, h3 {
color: #373737;
}
p {
line-height: 1.6;
}
.project {
margin-bottom: 20px;
}
footer {
background-color: #ffa500;
color: white;
text-align: center;
padding: 1em;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Mutsumi's portfolio</h1>
<p>illustrator / blogger</p>
</header>
<section>
<h2>自己紹介</h2>
<p>「まんぷくくん」というキャラクターを描いています。</p>
<h2>発信経緯</h2>
<p>私自身、高校時代に摂食障害(過食嘔吐・下剤乱用)になり、自信も心も全て失ってしまった時期があります。そのため、「私のように自信がない人・負の感情を抱えている人を、自分のイラストやデザインで救いたい」という思いからこの活動をしています。</p>
</section>
<section>
<h2>卒業制作</h2>
<div class="project">
<h3>1.デザインフェスタvol.58 に出展しました</h3>
<p>2023年11月12日(日)に東京で開催されたデザインフェスタにオリジナルグッズを制作して販売しました</p>
</div>
<div class="project">
<h3>2.SNSでイラストを投稿しました</h3>
<p>SNS: <a href="https://lit.link/mampukukun#" target="_blank">https://lit.link/mampukukun#</a></p>
</div>
<!-- Add more projects as needed -->
</section>
<section>
<h2>ご連絡はこちらまで📩</h2>
<p>Email: arimuu142@gmail.com</p>
<!-- Add other contact information as needed -->
</section>
<footer>
© 2024 Mutsumi Ebihara
</footer>
</body>
</html>