-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (93 loc) · 2.7 KB
/
index.html
File metadata and controls
96 lines (93 loc) · 2.7 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
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name = "descirption" content = "A biography of an anime character :^)">
<title>Bocchi - About</title>
<link rel = "icon" type = "image/x-con" href = "bocchi.jpg">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li>About</li>
<li><a href = "./skills.html"> Skills </a></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"> About </h2>
<p>
This is Hitori Gotoh, also known as Bocchi.
This character is not a real character if you cannot tell.
She is from an anime called Bocchi The Rock. (Very good anime if you are into anime :^))
</p>
<p>A few characteristics/traits about this particular character:</p>
<table>
<tr>
<td>
<form>
<input type ="checkbox"> Anxiety
</form>
</td>
<td>
<form>
<input type = "checkbox"> Guitarist
</form>
</td>
</tr>
<tr>
<td>
<form>
<input type = "checkbox"> Nervous
</form>
</td>
<td>
<form>
<input type = "checkbox">No Friends
</form>
</td>
</tr>
<tr>
<td>
<form>
<input type = "checkbox"> Depression
</form>
</td>
<td>
<form>
<input type = "checkbox"> Closet Dweller
</form>
</td>
</tr>
<tr>
<td>
<form>
<input type = "checkbox"> Lonely
</form>
<td>
<form>
<input type = "checkbox"> Everything is okay
</form>
</td>
</tr>
</table>
</article>
</div>
<footer> © Hitori Gotoh 2023</footer>
</body>
</html>