-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
110 lines (108 loc) · 4.81 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
<!DOCTYPE html>
<html>
<head>
<title>Jonathan Chiang</title>
<link rel="icon" href="images/favicon.ico">
<link rel="stylesheet" type="text/css" href="styles/fullpage.css" />
<link rel="stylesheet" type="text/css" href="styles/default.css" />
<link href='https://fonts.googleapis.com/css?family=Homemade+Apple' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet'>
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<script
src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
crossorigin="anonymous"></script>
<script type="text/javascript" src="fullpage.min.js"></script>
<script type="text/javascript" src="scrolloverflow.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#fullpage').fullpage({
anchors: ['about', 'projects'],
sectionsColor: ['#2e86de', '#ff9f43', 'whitesmoke'],
navigation: true,
scrollOverflow: true,
navigationPosition: 'right',
navigationTooltips: ['About Me', 'Projects']
});
});
</script>
<script src="https://kit.fontawesome.com/670b016101.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="links">
<a href="https://github.com/szge" target="_blank"><i class="fab fa-github-square"></i></a>
<a href="https://www.linkedin.com/in/jonathan-chiang-4323091ab/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="mailto:[email protected]" target="_blank"><i class="fas fa-envelope-square"></i></a>
</div>
<div id="fullpage">
<div class="section" id="section0">
<div class="title">
about me
</div>
<div class="content">
Hi! I'm Jonathan Chiang, a third year University of Toronto student studying Computer Science and Mathematics. Welcome to my portfolio website! Here's my <a href="files/resume.pdf" target="_blank">resume</a>. Here's my <a href="https://szge.ca/" target="_blank">personal website</a> (cool stuff!).
</div>
</div>
<div class="section" id="section1">
<div class="title">
projects
</div>
<div class="content">
<div class="grid-container">
<article class="project-listing">
<a class="project-title" href="https://github.com/szge/szge.github.io" target="_blank">Website source code</a>
<div class="project-image">
<a href="https://github.com/szge/szge.github.io" target="_blank">
<img src="images/project1.png">
</a>
</div>
</article>
<article class="project-listing">
<a class="project-title" href="https://github.com/szge/WhateverYouWant" target="_blank">WYW CS:GO Cheat</a>
<div class="project-image">
<a href="#">
<img src="images/project5.png" alt="test text filler stuff">
</a>
</div>
</article>
<article class="project-listing">
<a class="project-title" href="https://github.com/szge/group_0223_final" target="_blank">CSC207<br>final project</a>
<div class="project-image">
<a href="https://github.com/szge/group_0223_final">
<img src="images/project2.png">
</a>
</div>
</article>
<article class="project-listing">
<a class="project-title" href="https://github.com/szge/algorithms_data_structures" target="_blank">Algorithms & Data Structures</a>
<div class="project-image">
<a href="#">
<img src="images/project6.png" alt="test text filler stuff">
</a>
</div>
</article>
<article class="project-listing">
<a class="project-title" href="https://github.com/szge/CoilSolver" target="_blank">Mortal Coil solver</a>
<div class="project-image">
<a href="#">
<img src="images/project4.png">
</a>
</div>
</article>
<article class="project-listing">
<a class="project-title" href="files/Data_Management_Project_Part2.pdf" target="_blank">Grade 12 Data Management final project</a>
<div class="project-image">
<a href="files/Data_Management_Project_Part2.pdf" target="_blank">
<img src="images/project3.png">
</a>
</div>
</article>
</div>
</div>
</div>
</div>
</body>
</html>