-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
48 lines (40 loc) · 1.89 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Ren Jie Zheng" />
<meta name="description" content="Resume" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/layout.css" />
<link rel="stylesheet" href="./css/resume.css" />
<script src="./js/darkmode.js" defer></script>
<title>Ren Jie Zheng - Resume</title>
</head>
<body>
<button id="theme-toggle"><p>toggle theme</p></button >
<a href="./index.html">↖ Home</a>
<h1>Resume</h1>
<h2>PDF</h2>
<p>Link to resume <a href="./ResumeRenJieZheng.pdf">PDF ↗</a>.</p>
<br/>
<h2>Project List</h2>
<div id="projects">
<div class="card">
<h3>Ray Tracer</h3>
<br/>
<p>
I took <a href="https://student.cs.uwaterloo.ca/~cs488/Fall2024/index.html">CS 488 Introduction to Computer Graphics</a> during the fall 2024 term at the University of Waterloo.
This ray tracer was built as part of Assignment 4 and my Final Project for that course.
</p>
<br/>
<p>My submission received a <a href="https://student.cs.uwaterloo.ca/~cs488/gallery-A5-2023-2024.html">silver placement</a> out of all students in the course during that term.</p>
<br/>
<a href="./projects/raytracer.html">Read more ↗</a>.
</div>
</div>
</body>
</html>