43 lines
1.3 KiB
HTML
Executable File
43 lines
1.3 KiB
HTML
Executable File
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
<title>Peter the Baker</title>
|
||
|
||
<!-- Optional: system fonts for speed; swap later if you like -->
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link rel="stylesheet" href="/resources/css/index.css" />
|
||
</head>
|
||
<body>
|
||
<a class="skip-link" href="#main">Skip to content</a>
|
||
|
||
<header class="site-header">
|
||
<img class="avatar" src="/resources/img/pb.png" alt="Portrait of Peter Baker" width="200" height="200" class="responsive"/>
|
||
<h1 class="site-title">Peter Baker</h1>
|
||
</header>
|
||
|
||
<nav class="site-nav" aria-label="Primary">
|
||
<ul>
|
||
<li><a href="#social">Social</a></li>
|
||
<li><a href="#projects">Projects</a></li>
|
||
<li><a href="#contact">Contact</a></li>
|
||
</ul>
|
||
</nav>
|
||
|
||
<main id="main" class="content">
|
||
<section id="social"><h2>Social</h2><p>Links coming soon.</p></section>
|
||
<section id="projects"><h2>Projects</h2><p>Stuff I’m building.</p></section>
|
||
<section id="contact"><h2>Contact</h2><p>Email or DM.</p></section>
|
||
</main>
|
||
|
||
<footer class="site-footer">
|
||
<small>© <span id="year"></span> Peter Baker</small>
|
||
</footer>
|
||
|
||
<script>
|
||
document.getElementById('year').textContent = new Date().getFullYear();
|
||
</script>
|
||
</body>
|
||
</html>
|