-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
227 lines (220 loc) · 6.76 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>Zhijie Zhang</title>
<!--font-->
<link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,700" rel="stylesheet">
<!--font awesome-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<!--Custom CSS-->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--Header-->
<header id="home">
<div class="container">
<nav>
<ul>
<i class="far fa-times-circle fa-1x"></i>
<li>home</li>
<li>about</li>
<li>education</li>
<li>skill</li>
<li>project</li>
<li>contact</li>
</ul>
<i class="fas fa-bars fa-2x"></i>
</nav>
<section>
<div class="header-content">
<h1>ZHIJIE ZHANG</h1>
<h2>A recent graduate from UBC</h2>
<a target="_blank" class="resume-btn" href="resume/Resume-Website.pdf">View Resume</a>
</div>
</section>
</div>
</header>
<!--ABOUT ME-->
<section id="about">
<div class="container">
<div class="section-header">
<h2>ABOUT ME</h2>
<img src="img/self.jpg">
</div>
<div class="section-content">
<div class="about-me-content">
Hello there! My name is Zhijie Zhang.<br>
I was born in Shanghai, China. And I began
my study in Vancouver in 2014. My major is Computer Science and my interest is in web development.<br>
I will graduate from UBC in May 2018 and apply for a post-graduation work permit, which means I will be able to work legally in Canada for 3 years.<br>
Besides programming, I'm reading "Computer Networking A Top-Down Approach" and "CSAPP".
</div>
</div>
</div>
</section>
<!--EDUCATION-->
<section id="education">
<div class="container">
<div class="section-header">
<h2>EDUCATION</h2>
<i class="fas fa-graduation-cap fa-2x"></i>
</div>
<div class="section-content">
<div class="education-block">
<div class="education-date">
<h4>2015-2018</h4>
</div>
<div class="education-content">
<h3>University Of British Columbia</h3>
<h4 class="degree">Bachelor of Science, Major in Computer Science</h4>
<h4>GPA: 87/100</h4>
<h4>Award:</h4>
<p>Terk Scholarship in 2015. (Top 5%)</p>
<h4>Courses:</h4>
<p>CPSC 310: Introduction to Software Engineering</p>
<p>CPSC 411: Introduction to Compiler Construction</p>
<p>CPSC 418: Introduction to Parallel Computing</p>
<p>CPSC 420: Advanced Algorithms Design and Analysis</p>
</div>
</div>
<div class="education-block">
<div class="education-date">
<h4>2014-2015</h4>
</div>
<div class="education-content">
<h3>Langara College</h3>
<h4 class="degree">Arts And Science General, Dean's Honor List</h4>
<h4>GPA: 4.15/4.33</h4>
</div>
</div>
</div>
</div>
</section>
<!--PROJECT-->
<section id="project">
<div class="container">
<div class="section-header">
<h2>PROJECTS</h2>
<i class="far fa-keyboard fa-2x"></i>
</div>
<div class="section-content">
<div class="project-container">
<img src="img/CYCUBC.png">
<div class="overlay">
<div class="project-description">
<i class="far fa-eye fa-2x"></i>
<a href="https://github.com/ZhijieZhang/CYCUBC">
<i class="fab fa-github fa-2x"></i>
</a>
</div>
</div>
</div>
<div class="project-container">
<img src="img/sokoban.png">
<div class="overlay">
<div class="project-description">
<a href="http://sokobanjs.s3-website-us-west-1.amazonaws.com/">
<i class="far fa-eye fa-2x"></i>
</a>
<a href="https://github.com/ZhijieZhang/Sokoban">
<i class="fab fa-github fa-2x"></i>
</a>
</div>
</div>
</div>
<div class="project-container">
<img src="img/calculator.png">
<div class="overlay">
<div class="project-description">
<a href="http://calculatorjs.s3-website-us-west-1.amazonaws.com/">
<i class="far fa-eye fa-2x"></i>
</a>
<a href="https://github.com/ZhijieZhang/JSCalculator">
<i class="fab fa-github fa-2x"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--SKILL-->
<section id="skill">
<div class="container">
<div class="section-header">
<h2>SKILLSET</h2>
<i class="fas fa-desktop fa-2x"></i>
</div>
<div class="section-content">
<div class="skill-block">
<img src="img/html5.svg" alt="html5">
<p>HTML5</p>
</div>
<div class="skill-block">
<img src="img/css3.svg" alt="css3">
<p>CSS3</p>
</div>
<div class="skill-block">
<img src="img/bootstrap.svg" alt="bootstrap">
<p>Bootstrap</p>
</div>
<div class="skill-block">
<img src="img/javascript.svg" alt="js">
<p>JavaScript</p>
</div>
<div class="skill-block">
<img src="img/jquery.svg" alt="jquery">
<p>Jquery</p>
</div>
<div class="skill-block">
<img src="img/react.svg" alt="react">
<p>React</p>
</div>
<div class="skill-block">
<img src="img/nodejs.svg" alt="nodejs">
<p>Node.js</p>
</div>
<div class="skill-block">
<img src="img/mocha.svg" alt="mocha">
<p>Mocha</p>
</div>
<div class="skill-block">
<img src="img/jasmine.svg" alt="jasmine">
<p>Jasmine</p>
</div>
<div class="skill-block">
<img src="img/java.svg" alt="java">
<p>Java</p>
</div>
<div class="skill-block">
<img src="img/postgresql.svg" alt="postgresql">
<p>PostgreSQL</p>
</div>
<div class="skill-block">
<img src="img/git.svg" alt="git">
<p>Git</p>
</div>
</div>
</div>
</section>
<!--CONTACT-->
<section id="contact">
<div class="container">
<div class="section-header">
<h2>CONTACT</h2>
<i class="far fa-comment-dots fa-2x"></i>
</div>
<div class="section-content">
Email: [email protected]
<a href="https://www.linkedin.com/feed/">
<i class="fab fa-linkedin fa-2x"></i>
</a>
</div>
</div>
</section>
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
<script src="scripts/script.js"></script>
</body>
</html>