-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
70 lines (66 loc) · 3.04 KB
/
about.html
File metadata and controls
70 lines (66 loc) · 3.04 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="About Chase Brunette-Pak – background and interests for Hollow Projects.">
<link rel="canonical" href="https://hollowprojects.github.io/about.html">
<link rel="icon" href="images/favicon.svg" type="image/svg+xml">
<title>About Me | Hollow Projects</title>
<link rel="stylesheet" href="css/shared.css">
<link rel="stylesheet" href="css/about.css">
<script>
(function(){var t=localStorage.getItem('hollowprojects-theme');if(t==='dark'||t==='light')document.documentElement.setAttribute('data-theme',t);})();
</script>
</head>
<body>
<header class="site-header">
<div class="site-header-inner">
<h1 class="site-title"><a href="index.html">Hollow Projects</a></h1>
<nav>
<ul class="site-nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active" aria-current="page">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</nav>
<div class="theme-toggle-wrap">
<button type="button" id="theme-toggle" aria-label="Switch to dark mode">
<img src="images/sun.svg" alt="" class="theme-icon-sun" width="20" height="20">
<img src="images/moon.svg" alt="" class="theme-icon-moon hidden" width="20" height="20">
</button>
</div>
</div>
</header>
<main>
<h2 class="page-title">About Me</h2>
<section class="about-section">
<h2>About</h2>
<p>Replace this with your own intro: who you are, what you do, and what you care about. You can keep it short or add a few paragraphs.</p>
</section>
<section class="about-section">
<h2>Background</h2>
<p>Add your background here: education, work, hobbies, or anything else you want visitors to know. You can add more sections by copying an existing <code>about-section</code> block and editing the heading and text.</p>
</section>
</main>
<footer class="site-footer">
<div class="site-footer-inner">
<nav class="footer-social" aria-label="Social links">
<a href="https://www.linkedin.com/in/chase-brunette-pak/" target="_blank" rel="noopener noreferrer" title="LinkedIn">
<img src="images/linkedin.svg" alt="" width="24" height="24">
</a>
<a href="https://github.com/hollowprojects" target="_blank" rel="noopener noreferrer" title="GitHub">
<img src="images/github.svg" alt="" width="24" height="24">
</a>
<a href="https://www.youtube.com/@hollow.projects" target="_blank" rel="noopener noreferrer" title="YouTube">
<img src="images/youtube.svg" alt="" width="24" height="24">
</a>
<a href="https://www.redbubble.com/people/hollowprojects/shop" target="_blank" rel="noopener noreferrer" title="RedBubble">
<img src="images/redbubble.svg" alt="" width="24" height="24">
</a>
</nav>
</div>
</footer>
<script src="js/theme.js"></script>
</body>
</html>