-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
55 lines (46 loc) · 1.8 KB
/
resources.html
File metadata and controls
55 lines (46 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>sydney's site ✧ resources</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap" rel="stylesheet">
</head>
<body class="dark">
<header>
<div class="header-left">
<h1 class="logo">sydney r. fitzgerald</h1>
<p id="tagline"><span id="typed-text"></span><span class="cursor">|</span></p>
</div>
<button id="theme-toggle">☀️</button>
</header>
<nav>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="portfolio.html">portfolio</a></li>
<li><a href="resources.html" class="active">resources</a></li>
</ul>
</nav>
<main>
<h2>tools, guides, and inspo (no $$ required)</h2>
<div class="filter-buttons">
<button class="filter-btn active" data-filter="all">all</button>
<button class="filter-btn" data-filter="webpage">tutorials</button>
<button class="filter-btn" data-filter="project">projects</button>
<button class="filter-btn" data-filter="video">videos</button>
</div>
<section class="resources-grid fade-in">
<div class="resource-card" data-type="webpage">
<h3><a href="https://learn.adafruit.com/" target="_blank" rel="noopener noreferrer">Adafruit Learning System</a></h3>
<p>project gallery and tutorials for beginner-friendly embedded projects</p>
</div>
</section>
</main>
<footer>
<p>✶ made with love and vscode ✶ <br> © 2025 sydney r. fitzgerald</p>
</footer>
</body>
</html>