-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_me.html
117 lines (116 loc) · 4.67 KB
/
about_me.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
<!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">
<title>Yitian is cool</title>
<link rel="stylesheet" href="test.css">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navbar section -->
<nav class="navbar">
<div class="navbar__container">
<a href="index.html" id="navbar__logo">YITIAN GAO</a>
<div class="navbar__toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="about_me.html" class="navbar__links">
About
</a>
</li>
<li class="navbar__item">
<a href="interests.html" class="navbar__links">
Interests
</a>
</li>
<li class="navbar__item">
<a href="projects.html" class="navbar__links">
Projects
</a>
</li>
<li class="navbar__btn">
<a href="resume.html" class="button">
Resume
</a>
</li>
</ul>
</div>
</nav>
<!-- Main section -->
<div class="main" id="main">
<div class="main__container" id="main__container">
<div class="main__content">
<h1>About Me</h1>
<p>Learn about my background and general information here.</p>
</div>
<div class="main__img__container" id="main__image__container">
<img src="images/pic2.jpg" alt="pic" class="main__image">
</div>
</div>
</div>
<!-- Info Section -->
<div class="info">
<div class="info__container">
<ul class="info__list">
<li class="info__item">
<div class="info__content">
<h1>Education</h1>
<p>
I am currently a junior at Purdue University at West Lafayette. I am pursuing a
degree in computer science with a minor in economics.
</p>
</div>
</li>
<li class="info__item">
<div class="info__content">
<h1>Origins</h1>
<p>
I was born in Beijing, China but spent most of my life
growing up in the Bay Area, California.
</p>
</div>
</li>
<li class="info__item">
<div class="info__content">
<h1>Achievements</h1>
<p>
I don't have many notable achievements since entering college,
but I did obtain my Eagle rank in March of 2021.
</p>
</div>
</li>
</ul>
</div>
</div>
<!-- Footer Section -->
<div class="footer__container">
<ul class="footer__bar">
<li class="footer__item">
<h1 class="footer__header">About</h1>
<a href="about_footer.html" class="footer__links">This Website</a>
<a href="about_footer.html#about_this_website" class="footer__links">The Pictures</a>
<a href="about_footer.html#about_the_pictures" class="footer__links">Special Thanks</a>
</li>
<li class="footer__item">
<h1 class="footer__header">Contact</h1>
<a href="about_footer.html#special_thanks" class="footer__links">Email</a>
<a href="about_footer.html#contact" class="footer__links">Linked In</a>
<a href="about_footer.html#contact" class="footer__links">Phone</a>
</li>
<li class="footer__item">
<h1 class="footer__header">Social</h1>
<a href="about_footer.html#contact" class="footer__links">Facebook</a>
<a href="about_footer.html#social" class="footer__links">Github</a>
<a href="about_footer.html#social" class="footer__links">myCCO</a>
</li>
</ul>
</div>
<script src="app.js"></script>
</body>
</html>