-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (82 loc) · 3.39 KB
/
Copy pathindex.html
File metadata and controls
86 lines (82 loc) · 3.39 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!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="Mason Aldrich is a high school student developer interested in programming, web development, and building small projects."
/>
<title>Mason Aldrich | Student Developer</title>
<link rel="icon" href="assets/mason.ico" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/mobile.css" />
</head>
<body>
<header class="site-header">
<nav class="nav" aria-label="Primary navigation">
<a class="brand" href="./">Mason Aldrich</a>
<button class="menu-toggle" type="button" aria-expanded="false" aria-controls="site-nav">
Menu
</button>
<div class="nav-links" id="site-nav">
<a class="nav-link active" href="./" data-page="home">Home</a>
<a class="nav-link" href="./blog/" data-page="blog">Blog</a>
<a class="nav-link" href="./projects/" data-page="projects">Projects</a>
<a class="nav-link" href="./about/" data-page="about">About</a>
<a class="nav-link" href="./contact/" data-page="contact">Contact</a>
</div>
</nav>
</header>
<main>
<section class="hero" aria-labelledby="home-title">
<div class="hero-copy">
<p class="eyebrow">Student • Developer • Grade 11</p>
<h1 id="home-title">Mason Aldrich</h1>
<p class="hero-subtitle">I build simple things with code and I’m always learning.</p>
<p class="hero-text">
I’m a high school student interested in programming and web development. I spend most of my time writing Python,
trying out HTML and CSS, and turning ideas into small projects that teach me something new.
</p>
<ul class="tag-list" aria-label="Languages I use">
<li>Python</li>
<li>HTML</li>
<li>CSS</li>
</ul>
<div class="hero-actions">
<a class="button button-primary" href="./projects/">View Projects</a>
<a class="button button-secondary" href="./about/">About Me</a>
</div>
</div>
<div class="hero-visual">
<img src="assets/mason.jpeg" alt="Portrait of Mason Aldrich" />
</div>
</section>
<section class="panel" aria-labelledby="focus-title">
<div class="panel-header">
<p class="eyebrow">What I focus on</p>
<h2 id="focus-title">Building small, useful things</h2>
</div>
<div class="panel-grid">
<article class="panel-card">
<h3>Programming</h3>
<p>I enjoy learning the fundamentals and practicing them through real projects.</p>
</article>
<article class="panel-card">
<h3>Web Development</h3>
<p>I like creating clean, lightweight websites with simple structure and clear code.</p>
</article>
<article class="panel-card">
<h3>Open Learning</h3>
<p>I keep improving by building, debugging, and sharing what I learn.</p>
</article>
</div>
</section>
</main>
<footer class="site-footer">
<p>© 2026 Mason Aldrich</p>
<p>Built with HTML, CSS & JavaScript</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>