-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_footer.html
128 lines (128 loc) · 5.86 KB
/
about_footer.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
<!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">
<ul class="about__links">
<li class="about__items">
<h1 id="about_this_website">About This Website</h1>
<p>
It was a lot of fun making this website! At first, I was going to do a tutorial using
React to create my website. However, at that point in time I had no knowledge of html, css,
or JavaScript, so I couldn't understand anything. I decided to go backwards and learn the
basics first before trying to make a more complicated React app. I expected to do a few JS tutorials
first, but later realised that I could make a decent looking website without React, so I just added
more parts to the first tutorial to create this website. You can view the Github repository
<a href="https://github.com/gao634/gao634.github.io" class="repo_link" target="_blank">here</a>.
</p>
</li>
<li class="about__items">
<h1 id="about_the_pictures">About The Pictures</h1>
<p>
You might notice that for the professional photos of me, there is a signature at the bottom.
This is because my mom took those photos! Thanks mom!
</p>
</li>
<li class="about__items">
<h1 id="special_thanks">Special Thanks</h1>
<p>
I'd like to thank my mom for using her photos for my website. I would also like to thank my
friend Alvin Zhang for encouraging me to make this website. Check him out
<a href="https://alvinjz.me/" class="repo_link" target="_blank">here</a>.
</p>
</li>
<li class="about__items">
<h1 id="contact">Contacts</h1>
<p>
Email: [email protected]
</p>
<p>
<a href="https://www.linkedin.com/in/yitian-gao-80843b250" class="about__general__links" target="_blank">Linked In</a>
</p>
<p>
Phone: (510) 516-9222
</p>
</li>
<li class="about__items">
<h1 id="social">Social</h1>
<p>
<a href="https://www.facebook.com/yitian.gao.167/" class="about__general__links" target="_blank">Facebook</a>
</p>
<p>
<a href="https://github.com/gao634" class="about__general__links" target="_blank">Github</a>
</p>
<p>
<a href="https://purdue-csm.symplicity.com/profiles/yitian.gao" class="about__general__links" target="_blank">myCCO</a>
</p>
</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_this_website" class="footer__links">This Website</a>
<a href="#about_the_pictures" class="footer__links">The Pictures</a>
<a href="#special_thanks" class="footer__links">Special Thanks</a>
</li>
<li class="footer__item">
<h1 class="footer__header">Contact</h1>
<a href="#contact" class="footer__links">Email</a>
<a href="#contact" class="footer__links">Linked In</a>
<a href="#contact" class="footer__links">Phone</a>
</li>
<li class="footer__item">
<h1 class="footer__header">Social</h1>
<a href="#social" class="footer__links">Facebook</a>
<a href="#social" class="footer__links">Github</a>
<a href="#social" class="footer__links">myCCO</a>
</li>
</ul>
</div>
<script src="app.js"></script>
</body>
</html>