Skip to content
Permalink
f1b0ba6e9c
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
153 lines (138 sloc) 4.78 KB
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Wendell (Zhongwen) Guan's Resume</title>
<style>
body {
padding: 5vw;
}
header {
text-align: center;
background-color: #007bff; /* Example: Blue */
padding: 2vh 0;
color: #ffffff;
}
main {
display: flex;
flex-direction: row-reverse;
flex-wrap: wrap;
}
section {
flex: 1;
}
section:nth-of-type(2) {
flex-basis: 33%;
min-width: 200px;
}
section:first-of-type {
flex-basis: 66%;
min-width: 600px;
}
nav ul {
list-style-type: none;
display: flex;
justify-content: space-around;
padding: 0;
}
nav ul li a {
text-decoration: none;
color: #007bff; /* Example: Blue */
background-color: #f8f9fa; /* Example: Light grey */
padding: 10px;
border-radius: 5px;
}
footer {
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
<header role="banner">
<h1>Wendell (Zhongwen) Guan</h1>
<p>(765) 237-9861 | guan99@purdue.edu | West Lafayette, IN</p>
</header>
<nav>
<ul>
<li><a href="#education">Education</a></li>
<li><a href="#experience">Professional Experience</a></li>
<li><a href="#projects">Project Experience</a></li>
<li><a href="#skills">Skills & Certifications</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<main>
<section id="education">
<article>
<h2>Education</h2>
<h3>Purdue University</h3>
<p>Bachelor of Science in Data Analytics Technologies and Applications</p>
<h3>University of Arizona</h3>
<p>Computer Science Undergraduate</p>
</article>
</section>
<section id="experience">
<article>
<h2>Professional Experience</h2>
<div>
<h3>Oppo - Front-end Web Developer</h3>
<p>Jun 2023 - Sep 2023, Shenzhen, China</p>
<ul>
<li>Developed and maintained the front-end interface of the company website.</li>
<li>Led a major web application project, enhancing user interactivity.</li>
</ul>
</div>
<div>
<h3>Tencent - Product Manager</h3>
<p>Nov 2021 - Jun 2022, Shenzhen, China</p>
<ul>
<li>Assisted in planning and launching new product features.</li>
<li>Participated in market analysis and user research.</li>
</ul>
</div>
<div>
<h3>Hivestem Education - Product Manager</h3>
<p>Jun 2020 - Jun 2021, Beijing, China</p>
<ul>
<li>Responsible for the full lifecycle management of an educational product.</li>
<li>Designed and implemented product strategies.</li>
</ul>
</div>
</article>
</section>
<section id="projects">
<article>
<h2>Project Experience</h2>
<h3>SyllabusNow - Project Leader</h3>
<p>Website: <a href="https://syllabusnow.com/">https://syllabusnow.com/</a></p>
<ul>
<li>Successfully assisted over 1000 users in finding suitable courses.</li>
</ul>
</article>
</section>
<section id="skills">
<article>
<h2>Skills & Certifications</h2>
<ul>
<li>Software Developer: Python, HTML & CSS, JavaScript, React, Adobe Photoshop</li>
<li>System Administrator: Linux, Windows Server, VMware</li>
<li>Data Analyst: PowerBI</li>
<li>Languages: English (Fluent), Chinese (Native), Cantonese (Native)</li>
</ul>
</article>
</section>
<section id="contact">
<article>
<h2>Contact</h2>
<p>Email: guan99@purdue.edu</p>
<p>LinkedIn: wendellguan</p>
<p>GitHub: wendellguan</p>
</article>
</section>
</main>
<footer>
<small>&copy; Copyright 2024, Wendell Guan</small>
</footer>
</body>
</html>