-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (101 loc) · 5.07 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!-- light_gray = #E8ECEB -->
<!-- light_orange = #E09E50 -->
<!-- light_blue = #8CBDB9 -->
<!-- dark_blue = #2D3E4E -->
<!DOCTYPE html>
<html lang="en">
<link href='https://fonts.googleapis.com/css?family=Lora' rel='stylesheet'>
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Carly Miles's personal website" />
<!-- <link rel="icon" type="image/svg+xml" href="/icons/favicon.svg" /> -->
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png" />
<link rel="alternate icon" sizes="48x48" href="/icons/favicon.ico" />
<title>Carly Miles</title>
</head>
<body>
<nav class="topnav">
<a href="#Home">Home</a>
<a href="#Experiences">Experiences</a>
<a href="#Projects">Projects</a>
</nav>
<section id="Home" class="Home">
<div class="container container-intro">
<div class="intro-text">
<h2 styles="padding: 0;">Hi, I'm</h2>
<h1>Carly Miles.</h1>
<p>I am a third-year computer science student at the University of Michigan
with interests in machine learning, web development, and embedded systems.
</p>
</div>
<div class="image-container headshot">
</div>
<!-- <img class="headshot" src="./CM_foreground.png" alt="Headshot of Carly Miles"> -->
<!-- <img /> -->
</div>
</section>
<div id="Experiences" class="Experiences-target"></div>
<section class="Experiences">
<div class="section-title">
<h2>Experiences</h2>
</div>
<div class="container-exp" style="padding-bottom: 0px;">
<div class="exp" style="border-top-left-radius: 30px; border-bottom-width: 0px;">
<a class="exp-img SPARK-img" href="https://spark.engin.umich.edu/" target="_blank" rel="noreferrer">
</a>
<div class="exp-text">
<p class="exp-header">Powertrain Control Software Team Lead (Jan 2023-Now)</p>
<p class="exp-blurb">I lead a team of software engineers with the goal of automating precharge
and discharge relays on SPARK's new electric motorcycle.
</p>
<p class="exp-blurb">leadership • C • embedded systems</p>
</div>
</div>
<div class="exp" style="border-top-right-radius: 30px; border-left-width: 0px; border-bottom-width: 0px;">
<a class="exp-text" href="https://apps.apple.com/us/app/the-michigan-daily/id1615063980" target="_blank"
rel="noreferrer">
<div class="exp-img tmd-img"></div>
</a>
<div class="exp-text">
<p class="exp-header">Mobile Developer (Jan 2023-Now)</p>
<p class="exp-blurb">Develop solutions to fix bugs and advance The Michigan Daily mobile
application, along with a small team of other engineers.
</p>
<p class="exp-blurb">React Native • communication • mobile development</p>
</div>
</div>
</div>
<div class="container-exp" style="padding-top: 0px; padding-bottom: 40px;">
<div class="exp" style="border-bottom-left-radius: 30px; border-right-width: 0px;">
<a class="exp-img MNP-img" href="https://www.umneuroprosthetics.org/about/" target="_blank"
rel="noreferrer">
</a>
<div class="exp-text">
<p class="exp-header">Mobile Developer (Sep 2022-Now)</p>
<p class="exp-blurb"> Building a user-oriented application that provides functionality
such as usage tips and bluetooth settings to the user of the prosthetic arm.
</p>
<p class="exp-blurb">problem-solving • React Native</p>
</div>
</div>
<div class="exp" style="border-bottom-right-radius: 30px">
<a class="exp-text" href="https://jlevy44.github.io/levylab/about" target="_blank"
rel="noreferrer">
<div class="exp-img editml-img"></div>
</a>
<div class="exp-text">
<p class="exp-header">Undergraduate Researcher and Mentor (Feb 2022 - Feb 2023)</p>
<p class="exp-blurb"> Developed an algorithm to analyze over 300 thyroid biopsy images
and classify them in terms of risk of malignancy.
</p>
<p class="exp-blurb">Machine Learning • CNNs • research • leadership</p>
</div>
</div>
</div>
</section>
</body>
</html>