-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheducation.html
More file actions
66 lines (62 loc) · 1.82 KB
/
education.html
File metadata and controls
66 lines (62 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Bocchi - Education</title>
<link rel = "icon" type = "image/x-con" href = "bocchi.jpg">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li><a href = "./index.html"> About </a></li>
<li><a href = "./skills.html"> Skills </a></li>
<li> Education</li>
<li><a href = "./experinece.html"> Experience</a></li>
<li><a href = "./interests.html"> Interests</a></li>
</ul>
</nav>
<div id="main-body" >
<div id="border">
<figure>
<img id="profile-pic" src = "bocchi.jpg" width = "400" alt = "bocchi">
<figcaption>
<p class="fig-info">Hitori Gotoh</p>
<p class="fig-info">Band, Guitarist</p>
<p class="fig-info"><a href ="mailto: hitori@starry.com">hitori.gotoh@gmail.com</a></p>
</figcaption>
</figure>
</div>
<article>
<h2 class = "text-color">Education</h2>
<table>
<tbody>
<tr>
<td><b>High School Degree</b></td>
<td> 2021 - Current</td>
</tr>
<tr>
<td>Shuka High School</td>
<td>Shuka, Japan</td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td><b>High School Degree</b></td>
<td>2020 - 2021</td>
</tr>
<tr>
<td>Other High School</td>
<td>Shuka, Japan</td>
</tr>
</tbody>
</table>
<p class = "text-color">Credentials are available upon request</p>
</article>
</div>
<footer>© Hitori Gotoh 2023</footer>
</body>
</html>