-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<main class="main">
<img
src="mia.jpeg"
alt="pic of mia"
width="100"
height="100"
class="profile-pic"
/>
<div class="bio">
<h1>Mia Wong</h1>
<p>self taught web developer</p>
</div>
<a href="https://instagram.com/miawlwong" class="button">instagram</a>
<a href="https://youtube.com/@miawlwong" class="button">youtube</a>
<a href="https://tiktok.com/@miawlwong" class="button">tiktok</a>
<section>
<h3>my favorite hobbies</h3>
<ul>
<li>skiing</li>
<li>coding</li>
<li>cooking</li>
</ul>
<h3>my top 3 favorite anime</h3>
<ol>
<li>dorohedoro</li>
<li>attack on titian</li>
<li>cowboy bebop</li>
</ol>
</section>
</main>
</body>
</html>