-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
61 lines (56 loc) · 2.04 KB
/
contact.html
File metadata and controls
61 lines (56 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Hero's Makerspace</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Contact Hero's Makerspace</h1>
</header>
<nav class="main-nav">
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="blog.html">Blog</a>
<a href="contact.html">Contact</a>
<a href="resources.html">Resources</a>
<a href="knowledge-base.html">Knowledge Base</a>
</nav>
<main>
<section id="social-links">
<h2>Connect with me</h2>
<p>I am on various social media platforms, below are the links that you can use to connect with me. (populate later)</p>
<p>Twitch</p>
<p>ORCID</p>
<p>Facebook</p>
<p>YouTube</p>
<p>GitHub</p>
<p>Instagram</p>
<p>Twitter</p>
<p>LinkedIn</p>
<p>Medium</p>
<p>Amazon</p>
<p>Pinterest</p>
<p>itch.io</p>
<p>TikTok</p>
<p>Patreon</p>
<p>Reddit</p>
<p>Discord</p>
<p>Personal Professional Page/Portfolio</p>
<!--<ul>
<li><a href="https://www.facebook.com/Herosmakerspace" target="_blank">Facebook</a></li>
<li><a href="https://www.twitter.com/Herosmakerspace" target="_blank">Twitter</a></li>
<li><a href="https://www.instagram.com/Heros.makerspace" target="_blank">Instagram</a></li>
<li><a href="https://www.linkedin.com/in/CharlesBostwick" target="_blank">LinkedIn</a></li>
<li><a href="https://www.youtube.com/channel/ChannelID" target="_blank">YouTube</a></li>
</ul> -->
</section>
</main>
<footer>
<p>© 2024 Hero's Makerspace. All rights reserved.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>