-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
92 lines (90 loc) · 5.34 KB
/
about.html
File metadata and controls
92 lines (90 loc) · 5.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"/>
<title>About | Waverly Huang </title>
<link rel="icon" type="image/x-icon"
href="favicon.jfif"/> <!--Where is the favicon? We have patrick here for now-->
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous" referrerpolicy="no-referrer"/>
<script src="https://kit.fontawesome.com/f14364448c.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="https://use.typekit.net/csr8dau.css">
</head>
<body>
<style>
body {
background-color: rgba(255, 255, 255, 0.781);
}
</style>
<!--NAVBAR-->
<nav class="navbar">
<a class="logo-img" href="index.html">
<img src="favicon.jfif" width="36" height="36" alt="about / favicon"><!--Where is the favicon? We have patrick here for now-->
</a>
<ul class="link-list">
<li class="nav-item underline"><a href="index.html">index</a></li>
<li class="nav-item underline"><a href="gallery.html">gallery</a></li>
<li class="nav-item underlined"><a href="about.html">about</a></li>
</ul>
<button class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
</button>
</nav>
<!--ABOUT-->
<div class="flex-wrapper-2">
<div class="column-wrapper">
<h1 class="h1-but-smaller serif ital fade-in smaller">I'm Waverly;</h1>
<div class="spacer"></div>
<p class = "left-a-little">
<span class="sans medium p-and-a-bit">I'm a multidisciplinary designer studying Industrial Design at the
<a class="link" href="https://www.risd.edu/" target="_blank">Rhode Island School of Design</a>,
I'm from
<a class="link" href="https://www.google.com/maps/place/Centre+County,+PA/@40.9702328,-78.4197538,9z/data=!3m1!4b1!4m6!3m5!1s0x89ce9afae03ba819:0xe9305b782a439601!8m2!3d40.8765649!4d-77.8367282!16zL20vMG13dzI?entry=ttu" target="_blank">Centre County, Pennsylvania</a>,
but Providence, Rhode Island is now my second home.
<!-- THE GOOGLE MAPS IS SO GOOFY OMFG-->
</span>
<p class="sans p left-a-little">
<br>In my free time, I also like:
<ul class="sans p left-a-little" style="list-style-type: square; padding-left: 40px">
<li>🤖 exploring ways to break traditional boundaries in design (recently, ai integration) </li>
<li>🎵 creating playlists for different moods and storylines (and friends) </li>
<li>✍️ writing poetry and making digital or traditional illustrations </li>
</ul>
</p>
<p class="sans p">
<br>Currently designing for a better world @
<a class="link" href="https://www.betterworldxdesign.com/" target="_blank">Better World by Design</a>.
</p>
<p class="sans medium p-and-a-bit">
<br>Send mail (and everything else) to
<a class="link" href="mailto:whuang07@risd.edu" target="_blank">whuang07@risd.edu</a>.
Find my resume <a class="link" href="https://acrobat.adobe.com/link/review?uri=urn:aaid:scds:US:458b89d3-75ed-3ffa-8285-89af089682bd" target="_blank">here</a>. <!---->
</p>
</div>
<div class="img-wrapper about-img">
<img class="profile-img" src="profile.jfif" alt="A picture of Waverly Huang" width="100%"> <!-- Waves you dont have your actual image pushed so we have spongebob here for now -->
</div>
</div>
<!--FOOTER-->
<div class="spacer"></div>
<div class="footer-wrapper">
<div class="centre">
<h3 class="h3-and-a-bit serif">Thanks for stopping by.<br>Let's keep in touch!</h2>
<div class="social-icons">
<a href="mailto:whuang07@risd.edu" target="_blank" class="bi bi-envelope-paper icon-link_centre"></a>
<a href="https://www.linkedin.com/in/waverly-huang-66930622a/" target="_blank" class="fa-brands fa-linkedin-in icon-link_centre"></a>
<a href="https://github.com/waverlyhuang2004" target="_blank" class="fa-brands fa-github-alt icon-link_centre"></a>
</div>
</div>
<p class="copyright">© coded by Waverly Huang, 2024 || made with blood, sweat, and fears.</p>
</div>
<!--JS-->
<script src="../js"></script>
</body>
</html>