-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
29 lines (27 loc) · 1.07 KB
/
about.html
File metadata and controls
29 lines (27 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Basic Bio</title>
</head>
<body>
<header>
<h1>Student Bio</h1>
</header>
<section>
<h2>Kira Mueller</h2>
<img src="https://bootcampspot.com/broker/studentAvatar?accountId=34816" alt="Kira's picture">
<p>
Kira is a big nerd who loves to solve weird problems and invent useless businesses. She has never been to a hockey game as far as she can remember. She's a literal cat. You think you might know what that means but you don't.
</p>
</section>
<footer>
<h2>Contact Info</h2>
<ul>
<li><strong>Email:</strong> <a href="mailto:kira.mueller@outlook.com">kira.mueller@outlook.com</a></li>
<li><strong>GitHub:</strong> <a href="https://github.com/Sapphiery" target="_blank"> Sapphiery</a></li>
<li><strong>Portfolio:</strong> <a href="#"> Coming Soon!</a></li>
</ul>
</footer>
</body>
</html>