-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskills.html
More file actions
68 lines (65 loc) · 1.98 KB
/
skills.html
File metadata and controls
68 lines (65 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Bocchi - Skills</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> Skills</li>
<li><a href = "./education.html"> Education</a></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">Skills</h2>
<table>
<tbody>
<tr class = "skill-name">
<td>Guitar</td>
</tr>
<tr>
<td><progress max = "100" value = "95"></progress></td>
</tr>
<tr class = "skill-name">
<td>Communication</td>
</tr>
<tr>
<td><progress max = "100" value = "5"></progress></td>
</tr>
<tr class = "skill-name">
<td>Teamwork</td>
</tr>
<tr>
<td><progress max = "100" value = "10"></progress></td>
</tr>
<tr class = "skill-name">
<td>Leadership</td>
</tr>
<tr>
<td><progress max = "100" value = "3"></progress></td>
</tr>
</tbody>
</table>
</article>
</div>
<footer>© Hitori Gotoh 2023</footer>
</body>
</html>