-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
98 lines (72 loc) · 4.92 KB
/
about.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
96
97
98
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
<link href="css/switch.css" rel="stylesheet">
<link href="css/slideshow.css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="images/websiteLogo.png">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<title>ABOUT</title>
</head>
<body>
<nav>
<div class="navBar">
<div id="logo">
<h3 style="font-size: 45px;"><a href="index.html">EMMA LIM</a></h3>
<div class="dropdown">
<button class="navButton" onclick="toggleNav()"><img id="mobileNav" src="images/navButton.png" style="width: 50px;"></button>
<div id="dropdownMenu">
<div id="menuItem"><a id="dropdownContent" href="index.html">WORK</a></div>
<div id="menuItem"><a id="dropdownContent" href="about.html" style="text-decoration:underline;">ABOUT</a></div>
</div>
</div>
</div>
<div id="navItems">
<div id="page"><a href="index.html">WORK</a></div>
<div id="page"><a href="about.html" style="border-bottom:solid;">ABOUT</a></div>
</div>
</div>
</nav>
<main class="content">
<h1 style="text-align:center;">ABOUT</h1>
<div class="bio">
<!--slideshow code-->
<div class="slideshow-container">
<div class="slides">
<img src="images/about/EmmaLim.JPG" alt="Emma" style="max-width: 50%;">
</div>
<div class="slides">
<img src="images/about/drinkingMatcha.png" alt="Emma drinking Jutaek matcha" style="max-width: 50%;">
</div>
<div class="slides">
<img src="images/about/hiking.png" alt="Emma on a mountain overlooking Busan" style="max-width: 50%;">
</div>
</div>
<!--dots/circles for slideshow-->
<div style="text-align: center; padding-top: 5px;">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<div id="bioText">
<p>Outside of academics, I am captain of Wellesley’s varsity golf team and a radio DJ @ WZLY (91.5 FM). In my spare time, I can often be found hiking, creating new playlists, trying to perfect my matcha latte recipe, or reading Carnby Kim's webtoons. Check out some of my playlists down below!</p>
</div>
<div id="bioText">
<!--music playlists-->
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/playlist/3wAV3VpMEsqkSXUFMTmcwF?utm_source=generator" width="70%" height="352" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/playlist/6IGRwxsPCnNvh7WJuB0nAv?utm_source=generator" width="70%" height="352" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/playlist/4einiSZbriB5QiqHTbs2U6?utm_source=generator" width="70%" height="352" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
</div>
</div>
<div class="footer">
<p>Made by Emma Lim.</p>
<a class="social-icons" href="https://www.linkedin.com/in/lim-emma" target="_blank" style="padding-right:10px"><img src="images/footer/linkedin.png" style="max-width: 25px" alt="github"></a>
<a class="social-icons" href="https://github.com/emmalim" target="_blank"><img src="images/footer/github.png" style="max-width: 25px" alt="github"></a>
</div>
</main>
<script src="javascript/autoSlideshow.js"></script>
<script src="javascript/portfolio.js"></script>
</body>
</html>