-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.html
39 lines (35 loc) · 1.12 KB
/
resources.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hero's Makerspace - Resources</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Resources</h1>
</header>
<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="resources">
<h2>Useful Resources</h2>
<ul>
<li><a href="https://www.google.com" target="_blank">Placeholder Resource</a> - Description of resource<./li>
<li><a href="https://example.com" target="_blank">Placeholder Resource</a> - Description of resource.</li>
</ul>
</section>
</main>
<footer>
<p>© 2024 Hero's Makerspace. All rights reserved.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>