-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
34 lines (34 loc) · 1.07 KB
/
contact.html
File metadata and controls
34 lines (34 loc) · 1.07 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
<!--
Portfolio: contact page
Author: Dan Shan
Created: 2025-02-24
Updated: 2025-02-25
-->
<!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="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>Contact Me</h1>
<img src="images/pfp.jpg" alt="Profile Picture" class="profile-pic">
<p>Email: humanthe2nd@gmail.com</p>
<p>Discord: 1std </p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/danshan1st/" target="_blank">danshan1st</a> </p>
<p><a href="index.html">Back to Home</a></p>
<script src="script.js"></script>
</body>
</html>