-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (54 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');
</style>
<title>Winson Chen</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--main header-->
<div id="mainHeader">
<div id="headerTxt">
<h1>Hi, I am Winson Chen</h1>
<p> Full stack intern at CodePath</p>
<p> Computer Engineering student at University of Michigan</p>
<button id="resumeBtn"> Download resume </button>
</div>
<img id="profilePic" src="images/WinsonChen-removebg-preview.png" alt="A photo of Winson Chen">
</div>
<!--biography section-->
<div id="bioSection">
<div id = "bioSectionTxt">
<h2> About me</h2>
<p>I attend University of Michigan. I am pursuing a Bachelor's degree in Computer Engineering.</p>
<p> I am from New York City and have previously worked as a teaching assistant for ABCMath.</p>
<p>Some of my skills include: HTML, CSS, JavaScript and C++</p>
</div>
<img id="michiganLogo" src="images/MichiganLogo.svg.png" alt="University of Michigan logo">
</div>
<!--portfolio-->
<div id="portfolioSection">
<h2>Portfolio</h2>
<div id ="projectCardArea">
<div class="projectCard">
<p> Light and Sound Memory Game </p>
<p>description</p>
</div>
<div class="projectCard">
<p>Second Project</p>
<p>description</p>
</div>
<div class="projectCard">
<p>Third Project</p>
<p>description</p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>