-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (89 loc) · 3.53 KB
/
index.html
File metadata and controls
96 lines (89 loc) · 3.53 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
87
88
89
90
91
92
93
94
95
96
<!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="Matthew Robin portfolio showcasing full-stack web development projects and professional experience."
/>
<title>Matthew Robin | Full-Stack Web Developer</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<header class="site-header">
<div class="container nav-wrap">
<a href="#top" class="logo">Matthew Robin</a>
<nav class="site-nav" aria-label="Primary">
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#experience">Experience</a>
<a href="#contact">Contact</a>
</nav>
</div>
</header>
<main id="top">
<section class="hero section reveal">
<div class="container hero-layout">
<p class="eyebrow">Web Developer Portfolio</p>
<h1 id="hero-name">Matthew Robin</h1>
<p id="hero-role" class="hero-role">Full-Stack Web Developer</p>
<p id="hero-summary" class="hero-summary">
Building practical, full-stack web applications with modern frontend,
backend APIs, and production deployment workflows.
</p>
<div id="highlights" class="highlight-tags" aria-label="Technical highlights"></div>
<div class="hero-cta">
<a id="hero-github" class="btn btn-primary" href="#" target="_blank" rel="noreferrer">GitHub</a>
<a id="hero-email" class="btn btn-secondary" href="#">Email</a>
</div>
</div>
</section>
<section id="about" class="section reveal">
<div class="container">
<h2>About</h2>
<p id="about-text">
I design and ship end-to-end web products focused on useful workflows, strong user experience, and maintainable architecture.
</p>
</div>
</section>
<section id="projects" class="section reveal">
<div class="container">
<div class="section-head">
<h2>Featured Projects</h2>
<p>Top projects from my resume, with stable links and architecture context.</p>
</div>
<div id="project-grid" class="project-grid" aria-live="polite"></div>
</div>
</section>
<section id="experience" class="section reveal">
<div class="container">
<h2>Experience Snapshot</h2>
<div id="experience-list" class="experience-list"></div>
</div>
</section>
<section id="contact" class="section reveal">
<div class="container contact-card">
<h2>Contact</h2>
<p>Available for frontend, backend, and full-stack web development opportunities.</p>
<div class="contact-links">
<a id="contact-email" href="#">Email</a>
<a id="contact-github" href="#" target="_blank" rel="noreferrer">GitHub</a>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container">
<p>© <span id="year"></span> Matthew Robin</p>
</div>
</footer>
<script src="./script.js" defer></script>
</body>
</html>