-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (108 loc) · 4.54 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="stylesheet.css">
<title>Manato13</title>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1 class="display-4">Manato Nakamura</h1>
<a href="https://goo.gl/maps/PoL8LDMMwgpHq16JA" target="_blank">
<img src="top.jpg" class="img-fluid" alt="Banner Image">
</a>
</div>
<div class="row">
<div class="col-sm-4">
<a href="https://github.com/Manato13" target="_blank">
<img src="icon.jpg" class="rounded-circle img-fluid" alt="Profile Image">
</a>
</div>
<div class="col-sm-8">
<h2 class="my-4">About Me</h2>
<p>岐阜大学 工学部 電気電子・情報工学科情報コース 4年生<br>研究室のテーマは人工知能を用いた人の心理や認知の解明です。<br>現在は大規模言語モデルを活用したデータ解析とリスク管理について研究をしています。</p>
</div>
</div>
<h2 class="my-4">Works</h2>
<h3 class="subcategory">講義内課題</h3>
<div class="row">
<!-- 作品を3つ表示 -->
<div class="col-sm-4">
<a href="https://github.com/Manato13/YouTubeCustomSearchApp" target="_blank">
<img src="work1.jpg" class="img-fluid" alt="Work 1 Image">
<h3>Youtubeカスタム検索アプリ</h3>
<p>独自のパラメーターでYoutubeチャンネル内の動画をソートするAndroidアプリです。</p>
</a>
</div>
<div class="col-sm-4">
<a href="path/to/work2" target="_blank">
<img src="noimage.png" class="img-fluid" alt="Work 2 Image">
<h3>作品2のタイトル</h3>
<p>作品2の軽い説明。</p>
</a>
</div>
<div class="col-sm-4">
<a href="path/to/work3" target="_blank">
<img src="noimage.png" class="img-fluid" alt="Work 3 Image">
<h3>作品3のタイトル</h3>
<p>作品3の軽い説明。</p>
</a>
</div>
<h3 class="subcategory">発表</h3>
<div class="row">
<!-- 作品を3つ表示 -->
<div class="col-sm-4">
<a href="https://github.com/Manato13/YouTubeCustomSearchApp" target="_blank">
<img src="work1.jpg" class="img-fluid" alt="Work 1 Image">
<h3>Youtubeカスタム検索アプリ</h3>
<p>独自のパラメーターでYoutubeチャンネル内の動画をソートするAndroidアプリです。</p>
</a>
</div>
<div class="col-sm-4">
<a href="path/to/work2" target="_blank">
<img src="noimage.png" class="img-fluid" alt="Work 2 Image">
<h3>作品2のタイトル</h3>
<p>作品2の軽い説明。</p>
</a>
</div>
<div class="col-sm-4">
<a href="path/to/work3" target="_blank">
<img src="noimage.png" class="img-fluid" alt="Work 3 Image">
<h3>作品3のタイトル</h3>
<p>作品3の軽い説明。</p>
</a>
</div>
<h3 class="subcategory">自主制作</h3>
<div class="row">
<!-- 作品を3つ表示 -->
<div class="col-sm-4">
<a href="https://github.com/Manato13/YouTubeCustomSearchApp" target="_blank">
<img src="work1.jpg" class="img-fluid" alt="Work 1 Image">
<h3>Youtubeカスタム検索アプリ</h3>
<p>独自のパラメーターでYoutubeチャンネル内の動画をソートするAndroidアプリです。</p>
</a>
</div>
<div class="col-sm-4">
<a href="path/to/work2" target="_blank">
<img src="noimage.png" class="img-fluid" alt="Work 2 Image">
<h3>作品2のタイトル</h3>
<p>作品2の軽い説明。</p>
</a>
</div>
<div class="col-sm-4">
<a href="path/to/work3" target="_blank">
<img src="noimage.png" class="img-fluid" alt="Work 3 Image">
<h3>作品3のタイトル</h3>
<p>作品3の軽い説明。</p>
</a>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>