-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
122 lines (108 loc) · 4.37 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<title>Gavin Wang</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/horse.svg" type="icon type">
<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=Open+Sans:wght@400;500;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/sidebar.css">
<link rel="stylesheet" href="styles/general.css">
<link rel="stylesheet" href="styles/contact.css">
<style>
.sidebar-link .contact-icon {
height: 36px;
filter: invert(42%) sepia(30%) saturate(4682%) hue-rotate(166deg) brightness(101%) contrast(104%);
}
.contact {
color: white;
}
</style>
</head>
<body>
<div class="header">
<div class="self-photo">
<img class="gavin-photo" src="images/self-photo.jpg" alt="Gavin Wang">
</div>
<div class="author-name">
Gavin Wang
</div>
<div class="social-contact">
<a class="social-contact-icon-container"
href="https://github.com/BeginningGradeMaker">
<img class="social-contact-icon" src="images/github.svg" alt="github">
</a>
<a class="social-contact-icon-container"
href="https://www.instagram.com/wangzhisu7/">
<img class="social-contact-icon" src="images/instagram.svg" alt="instagram">
</a>
<a class="social-contact-icon-container"
href="https://www.linkedin.com/in/gavin-wang-015347226/">
<img class="social-contact-icon" src="images/twitter.svg" alt="linkedin">
</a>
<a class="social-contact-icon-container"
href="https://twitter.com/wangzhisu1">
<img class="social-contact-icon" src="images/facebook.svg" alt="linkedin">
</a>
<a class="social-contact-icon-container"
href="https://www.linkedin.com/in/gavin-wang-015347226/">
<img class="social-contact-icon" src="images/linkedin.svg" alt="linkedin">
</a>
</div>
<nav class="sidebar">
<a class="sidebar-link"
href="index.html">
<img class="home-icon" src="images/home.svg" alt="homepage">
<span>Home</span>
</a>
<a class="sidebar-link"
href="course-notes.html">
<img class="notes-icon" src="images/sticky-note.svg" alt="notes">
<span>Course Notes</span>
</a>
<a class="sidebar-link"
href="side-projects.html">
<img class="projects-icon" src="images/work.svg" alt="projects">
<span>Projects</span>
</a>
<a class="sidebar-link"
href="recents.html">
<img class="recents-icon" src="images/nightlife.svg" alt="recents">
<span>Recents</span>
</a>
<a class="sidebar-link contact"
href="contact.html">
<img class="contact-icon" src="images/contact-page.svg" alt="contact">
<span>Contact</span>
</a>
</nav>
<div class="uwaterloo-logo-container">
<img class="uwaterloo-logo" src="images/UW3.png" alt="University of Waterloo">
</div>
<p style="margin-left: 80px;
margin-top: auto;">© <span style="font-size: 12px;">Gavin Wang, 2022</span></p>
</div>
<main>
<h1 class="page-title">Contact</h1>
<div class="content-container">
<div class="content">
<h3>Address: 254 Phillip St, Waterloo, ON</h3>
<h3>Phone Number: 211 978 3018</h3>
<h3>Email: <a href="mailto: z2552wan@uwaterloo.ca">
z2552wan@uwaterloo.ca
</a></h3>
<h3>WeChat: Wangzhisu1013</h3>
<h3>Current Term: Study Term</h3>
<h3>Current Academic Level: 3A (Fall 2022)</h3>
<h3>Current Course Load: CO 342, C0 367, CS 240, CS 241E, CS 251,
PMATH 333
</h3>
</div>
<div class="self-photo-container"><img
style="height: inherit;" src="images/me.jpg" alt="me"></div>
</div>
</main>
</body>
</html>