-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (76 loc) · 3.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1 data-lang-ja="My Portfolio">My Portfolio</h1>
</header>
<nav>
<a href="#about" data-lang-ja="自己紹介">About</a>
<a href="#videos" data-lang-ja="作成動画">Videos</a>
<a href="#activities" data-lang-ja="活動">Activities</a>
<a href="#certifications" data-lang-ja="資格">Certifications</a>
</nav>
<main>
<section id="about">
<h2 data-lang-ja="自己紹介">About Me</h2>
<ul>
<li data-lang-ja="青山学院大学に通う学生で、古橋研究室に所属しています。英語が得意で、日英通訳の他にも動画編集やWEBサイトの作成などができます。">
I am a student attending Aoyama Gakuin University and am a member of the Furuhashi Laboratory.<br> I am proficient in English, and beyond English-Japanese translation, I can also edit videos and create websites.
</li>
</ul>
</section>
<br>
<br>
<section id="videos" >
<h2 data-lang-ja="作成動画">Videos</h2>
<ul>
<li data-lang-ja="研究室の紹介動画">Introduction movie of lab </li>
<p data-lang-ja="古橋研究室の紹介動画を作成しました。">I have created an introduction video for the Furuhashi Laboratory.</p>
<img src="img/labmovie.png" alt="description of image">
<br>
<a href="https://youtu.be/aJqFrcHu6rc" data-lang-ja="Youtubeで見る">Watch on Youtube</a>
</ul>
<br>
<br>
<section id="activities">
<h2 data-lang-ja="その他の活動">Activities</h2>
<ul>
<li data-lang-ja="3D モデリング">3D modeling</li>
<p data-lang-ja="3Dブレンダーを使ってドローンをモデリングしてみました。">I tried modeling a drone using 3D Blender.</p>
<img src="img/dronemodering.png" alt="description of image">
<br>
<a href="https://medium.com/furuhashilab/%E6%B7%B1%E6%B0%B4-%E3%83%89%E3%83%AD%E3%83%BC%E3%83%B3%E3%83%8F%E3%83%83%E3%82%AB%E3%82%BD%E3%83%B3-78e50cecb97f" data-lang-ja="Mediumで見る">Watch on Medium</a>
<br>
<br>
<li data-lang-ja="お守り作り">Creating charms</li>
<p data-lang-ja="お守りを作ってみました。">I tried to make charms.</p>
<img src="img/tabibitomamori.png" alt="description of image">
<br>
<a href="https://medium.com/furuhashilab/お守り作り-横瀬ガチャハッカソン-a6bc5be403a6" data-lang-ja="Mediumで見る">Watch on Medium</a>
</ul>
<br>
<br>
</section>
<section id="certifications" >
<h2 data-lang-ja="資格">Certifications</h2>
<ul>
<!-- Insert your certifications and qualifications here -->
<li data-lang-ja="English">English</li>
<p data-lang-ja="TOEIC(L&R)で885点のスコアを獲得しました。">I achieved a score of 885 on the TOEIC, which stands for Test of English for International Communication. <br>It's an internationally recognized test that assesses an individual's proficiency in English in a business context.</p>
<!-- Add more certifications as needed -->
</ul>
</section>
</main>
<footer>
<p data-lang-ja="© 2023 tomokifukamizu">© 2023 tomokifukamizu</p>
</footer>
</body>
</html>
<button id="lang-switch" style="position: fixed; top: 20px; right: 20px;">日本語</button>
<script src="language.js"></script>