-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (57 loc) · 2.25 KB
/
index.html
File metadata and controls
66 lines (57 loc) · 2.25 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
<!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 ✧ home</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" class="active">home</a></li>
<li><a href="portfolio.html">portfolio</a></li>
<!-- <li><a href="blog.html">blog</a></li> -->
<li><a href="resources.html">resources</a></li>
</ul>
</nav>
<main>
<h2>hey there</h2>
<section class="fade-in">
<div class="bio-flex">
<img class="selfie" src="images/me.jpg" alt="picture of Sydney">
<p>i’m sydney - computer engineering student, embedded systems nerd, and cat lover. here you'll find a history of my past works,
resources that have guided my projects, and fun things i want to share with the virtual world. have a look around!</p>
</div>
</section>
<section class="connect fade-in">
<h3>let's connect</h3>
<p>for a more boring summary, <a href="your-resume-link" target="_blank">view my resume</a></p>
<p>for inquires, fun facts, & everything in between, <a href="mailto:sydfitz@seas.upenn.edu">email me</a></p>
</section>
<!--
<section class="explore fade-in">
<h3>explore</h3>
<ul class="links-grid">
<li><a href="blog.html#latest">latest post</a></li>
<li><a href="resources.html#zines">tech zines</a></li>
<li><a href="portfolio.html#weird">weird builds</a></li>
<li><a href="mailto:sydfitz@seas.upenn.edu">send signal</a></li>
</ul>
</section> -->
</main>
<footer>
<p>✶ made with love and vscode ✶ <br> © 2025 sydney r. fitzgerald</p>
</footer>
</body>
</html>