-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
45 lines (45 loc) · 1.75 KB
/
Copy pathcontact.html
File metadata and controls
45 lines (45 loc) · 1.75 KB
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
<!--
Portfolio: contact page
Author: Dan Shan
Created: 2025-02-24
Updated: 2026-06-07
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<canvas id="snowCanvas"></canvas>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="academic-work.html">Academic Works</a></li>
<li><a href="contact.html">Contact</a></li>
<li><button onclick="toggleDarkMode()">Toggle Dark Mode</button></li>
</ul>
</nav>
<h1>Feel free to reach out</h1>
<img src="images/headshot.jpg" alt="Profile Picture" class="profile-pic">
<p>Personal Email: 3shandan@gmail.com</p>
<p>Education Email: dshan040@uottawa.ca</p>
<p>Discord: 1std </p>
<p class="social-links">
<a class="social-link" href="https://www.linkedin.com/in/danshan1st/" target="_blank" rel="noopener" aria-label="Clist" title="Clist">
<img class="social-icon" src="images/LinkedIn.png" alt="Clist">
</a>
<a class="social-link" href="https://github.com/HumanThe2nd" target="_blank" rel="noopener" aria-label="Clist" title="Clist">
<img class="social-icon" src="images/Git.png" alt="Clist">
</a>
<a class="social-link" href="https://clist.by/coder/1s/" target="_blank" rel="noopener" aria-label="Clist" title="Clist">
<img class="social-icon" src="images/Clist.png" alt="Clist">
</a>
</p>
<p><a href="index.html">Back to Home</a></p>
<script src="assets/js/script.js"></script>
</body>
</html>