-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (43 loc) · 1.71 KB
/
index.html
File metadata and controls
44 lines (43 loc) · 1.71 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
<!--
Portfolio HTML code
Author: Dan Shan
Created: 2025-02-23
Updated: 2025-06-04
!-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PortFolio</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()">Change Theme</button></li>
</ul>
</nav>
<div class="name-block">
<h1>Dan Shan</h1>
<p class="alias-subtitle" title="HumanThe2nd, 1s, 1sd">Aliases</p>
</div>
<img src="images/pfp.jpg" alt="Profile Picture" class="profile-pic">
<h2> Welcome to my portfolio!</h2>
<p> I'm a software developer studying engineering at the University of Ottawa. <br>
This portfolio consists of some of my projects, academic works, and contact information.<br>
As hobbies: I enjoy competitive programming, various projects, reading articles, working out, and playing sports. <br>
Feel free to reach out to me :)</p>
<p><a href="contact.html" target="_blank">Contacts</a></p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/danshan1st/" target="_blank">danshan1st</a> </p>
<p>Github: <a href="https://github.com/HumanThe2nd" target="_blank">HumanThe2nd</a> </p>
<p>Clist: <a href="https://clist.by/coder/1s/" target="_blank">1s</a> </p>
<div id="view-count"></div>
<script src="script.js"></script>
</body>
</html>