-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
95 lines (68 loc) · 2.23 KB
/
aboutme.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>jjasminew</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;800&display=swap" rel="stylesheet">
</head>
<body>
<!-- code for side nav bar -->
<div id="mySideNav" class="sideNav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html">home</a>
<a href="aboutme.html">about me</a>
<a href="projects.html">projects</a>
<a href="portfolio.html">portfolio</a>
<a href="resume.html">resume</a>
</div>
<h1 class="menuBtn" onclick="openNav()">menu</h1>
<!-- about me section -->
<h1 class="aboutTitle">about me</h1>
<p class="aboutParagraph">hello, i am jasmine! just a 19-year old girl who is passionate about creating social change through code, design, and research.</p>
<!-- interests section -->
<div class="allInterests">
<div class="interestsListImage">
<ul class="interestsList">
<h1 class="interestsTitle">interests</h1>
<img src="kwk.png" class="interestsImage">
<li>web development</li>
<li>human-computer interaction</li>
<li>ux/ui design</li>
<li>ai and data science</li>
<li>listening to kpop and tate mcrae</li>
<li>watching kdramas</li>
</ul>
</div>
</div>
<!-- favorites section -->
<div class="allFavs">
<div class="favsListImage">
<ul class="favsList">
<h1 class="favsTitle">favorites</h1>
<img src="jasmine1.jpg" class="favsImage">
<li>color: turquoise</li>
<li>food: shabu shabu</li>
<li>time of day: sunset</li>
<li>song: omg by newjeans</li>
<li>coding language: javascript</li>
<li>animal: panda</li>
</ul>
</div>
</div>
<!-- currently up to section -->
<div class="allCurrent">
<h1 class="currentTitle">what im currently up to</h1>
<ul class="currentList">
<li>exploring my passions</li>
<li>browsing through awwwards for inspo</li>
<li>learning quantum computing from the coding school</li>
<li>cuddling with my dog</li>
</ul>
</div>
<script src="script.js"></script>
</body>
</html>