-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (64 loc) · 2.83 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
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
<!DOCTYPE html>
<html>
<head>
<title>AA191A Map and Portfolio Lab</title>
<meta charset="utf-8" />
<link rel="shortcut icon" href="#">
<link rel="stylesheet" href="styles/style.css">
<!-- MapLibreGL's css-->
<link rel="stylesheet" href="https://unpkg.com/maplibre-gl/dist/maplibre-gl.css" />
<!-- MapLibreGL's JavaScript-->
<script src="https://unpkg.com/maplibre-gl/dist/maplibre-gl.js"></script>
</head>
<body>
<header>
<h1>ABOUT ME! ^_< ☆</h1>
</header>
<main>
<!-- hint: majority of your lab assignment can go here -->
<div class="col1">
<!-- Portfolio content goes here -->
<img id="avatar" src="images/avatar.jpg" alt="A photo of the site creator">
<div id="description">
<p> Hi! My name is Michelle, and I'm currently a junior at UCLA majoring in
Computer Science as well as double minoring in Digital Humanities and Philosophy.
One of my goals is to become capable of creating ethical software
that can be used to improve critical infrastructure in society,
and I am looking forward to how the content covered in class as well as the course project
will better inform me in achieving this!
</p>
<br>
<p> In my free time, I like to draw and watch anime. My favorite artists are:
<ol>
<li><a href="https://x.com/3c5u3r5r3y5/media">Harukawa Sango</a> (manga artist)</li>
<li><a href="https://x.com/sotonami/media">Ishida Sui</a> (manga artist)</li>
<li><a href="https://butdoesitfloat.com/Since-the-world-drifts-into-delirium-we-must-adopt-a-delirious-point">Jean Giraud</a>, a.k.a. Moebius (bande dessinée artist)</li>
</ol>
</p>
</div>
</div>
<div class="col2">
<div class="title"><h2>WHERE I WENT!</h2></div>
<div id="map">
<!-- Map will be inserted here -->
</div>
<div class="caption">
<p>Labeled above are some of the specific places I visited when I traveled to China last summer!
Overall, I went to the following cities:
<ul>
<li>Shanghai</li>
<li>Yangzhou</li>
<li>Suzhou</li>
<li>Nanjing</li>
<li>Hangzhou</li>
</ul>
</p>
</div>
</div>
</main>
<div id="footer">
<p>COPYRIGHT 2024</p>
</div>
<script src="js/init.js"></script>
</body>
</html>