-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
39 lines (36 loc) · 2.41 KB
/
Copy pathabout.html
File metadata and controls
39 lines (36 loc) · 2.41 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
<!DOCTYPE html>
<html>
<script>
window.addEventListener("load", (event) => {
new cursoreffects.fairyDustCursor({colors: ["#FFD8FB", "#6BCEFF", "#854F3D", "#89EA78"],});
});
</script>
<head>
<!-- Html page FOR home page -->
<title>About Page</title>
<script src="https://unpkg.com/cursor-effects@latest/dist/browser.js"></script>
<link rel="icon" href="images/favicon.png">
<link rel="stylesheet" type="text/css" href="./css/about.css">
<link rel="stylesheet" type="text/css" href="./css/layout.css">
<link href='https://fonts.googleapis.com/css?family=ABeeZee' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Open Sans' rel='stylesheet'>
<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=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<script src="js/components.js"></script>
</head>
<body>
<div id="header"></div>
<div class = "container">
<img class="container__image" src="images/profile.jpg" alt="profile" width="400">
<div class="container__text">
<h1 style="font-family: IBM Plex Mono">Hi, I'm Madison!</h1>
<p>I graduated from Columbia University (May 2023), where I studied computer science. I currently work at IBM Research as a <b>Technical Product Manager</b> for <a href="https://huggingface.co/ibm-granite" style="color: inherit; text-decoration: none;"><b>Granite</b></a>, our family of open AI models.</p>
<p>Previously, I was an <b>AI Engineer</b> at IBM, where I worked on building out custom generative AI solutions for clients using watsonx products. I also gained experience as a <b>Product Designer</b> at UpFront, a Columbia Build Lab startup that provided a marketplace between investors and landlords to invest in securitized contracts.</p>
<p>Currently, I'm working on the HuggingFace of the perfume world <a href="<INSERT LINK>" style="color: black; text-decoration: underline;">(Click for a sneak peak).</a> In my laptop-free time, I'm usually working out, spending time with my family, or sewing clothes. I'm interested in <b>user-centric roles with a focus in AI</b>.</p>
<p><a href="Resume_2026.pdf" style="color: black; text-decoration: underline;">Click here to download my resume!</a></p>
</div>
</div>
<div id="footer"></div>
</body>
<html>