forked from rjshkhr/cleanfolio-minimal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
179 lines (154 loc) · 5.57 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Portfolio" />
<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=Poppins:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/fa62c117c7.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="styles.css" />
<title>Andre Mao</title>
</head>
<body class="light" id="top">
<header class="header center">
<h3>
</h3>
<nav class="nav center">
<ul class="nav__list center">
<li class="nav__list-item">
<a class="link link--nav" href="#projects">Projects</a>
</li>
<li class="nav__list-item">
<a class="link link--nav" href="#skills">Skills</a>
</li>
<li class="nav__list-item">
<a class="link link--nav" href="#contact">Contact</a>
</li>
</ul>
<button type="button" aria-label="toggle theme" class="btn btn--icon">
<i aria-hidden="true" id="btn-theme" class="fas fa-moon"></i>
</button>
<button
type="button"
aria-label="toggle navigation"
class="btn btn--icon nav__hamburger"
>
<i aria-hidden="true" class="fas fa-bars"></i>
</button>
</nav>
</header>
<main>
<!-- About -->
<div class="about center">
<h1>Hi, I am <span class="about__name">Andre Mao.</span></h1>
<p class="about__desc">
I'm currently a student at Columbia University pursuing a B.S.
in Computer Science from the School of Engineering and Applied
Sciences, anticipating graduation in May of 2026. My interests
include exploring the applications of computer science to real
life, whether it be in advertisements or finance. I'm currently
broadly exploring fields such as artificial intelligence, robotics,
and data analysis.
</p>
<div class="about__contact center">
<a href="https://drive.google.com/file/d/1xTvtQnDGU73aKn95eo_XmZIoWx8v6xSO/view?usp=sharing">
<span class="btn btn--outline">Resume</span>
</a>
<a
href="https://github.com/andre-mao18"
aria-label="github"
class="link link--icon"
>
<i aria-hidden="true" class="fab fa-github"></i>
</a>
<a
href="https://linkedin.com/in/andre-mao-88a1b41ab"
aria-label="linkedin"
class="link link--icon"
>
<i aria-hidden="true" class="fab fa-linkedin"></i>
</a>
</div>
</div>
<!-- Projects -->
<section id="projects" class="section projects">
<h2 class="section__title">Projects</h2>
<div class="projects__grid">
<div class="project">
<h3>Project 1</h3>
<p class="project__description">
Work In Progress
</p>
<ul class="project__stack">
</ul>
</div>
<div class="project">
<h3>Project 2</h3>
<p class="project__description">
Work In Progress
</p>
<ul class="project__stack">
</ul>
</div>
<div class="project">
<h3>Project 3</h3>
<p class="project__description">
Work In Progress
</p>
<ul class="project__stack">
</ul>
</div>
</div>
</section>
<!-- Skills -->
<section class="section skills" id="skills">
<h2 class="section__title">Skills</h2>
<ul class="skills__list">
<li class="skills__list-item btn btn--plain">Java</li>
<li class="skills__list-item btn btn--plain">Python</li>
<li class="skills__list-item btn btn--plain">C++</li>
<li class="skills__list-item btn btn--plain">TensorFlow</li>
<li class="skills__list-item btn btn--plain">Keras</li>
<li class="skills__list-item btn btn--plain">YOLOv3</li>
<li class="skills__list-item btn btn--plain">MySQL</li>
<li class="skills__list-item btn btn--plain">MATLAB</li>
<li class="skills__list-item btn btn--plain">SciKit-Image</li>
<li class="skills__list-item btn btn--plain">Pulse2Percept</li>
<li class="skills__list-item btn btn--plain">Algorithms</li>
<li class="skills__list-item btn btn--plain">Data Structures</li>
</ul>
</section>
<!-- Contact -->
<section class="section contact center" id="contact">
<h2 class="section__title">Contact</h2>
<a href="mailto:am5994@columbia.edu">
<span class="btn btn--outline">Email me</span>
</a>
</section>
</main>
<footer class="footer">
<a
href="https://github.com/andre-mao18/andre-mao18.github.io"
class="link footer__link"
>
Created By Andre Mao, Forked From rajshekhar26/cleanfolio-minimal
</a>
</footer>
<div class="scroll-container">
<div class="scroll-top">
<a aria-label="Scroll up" href="#top">
<i aria-hidden="true" class="fas fa-arrow-up"></i>
</a>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>