<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Michael Male</title>
<!-- Bootstrap 5.3.8 (pinned) -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" />
<style>
/* Calibri-like, system sans-serif stack */
:root {
--bg: #ffffff;
--fg: #111111;
--muted: #6c757d;
--card: #f8f9fa;
--link: #0d6efd;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #0b0c0f;
--fg: #e9ecef;
--muted: #adb5bd;
--card: #141820;
--link: #66a3ff;
}
}
html, body {
height: 100%;
}
body {
font-family: Calibri, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background: var(--bg);
color: var(--fg);
display: flex;
flex-direction: column;
}
header {
backdrop-filter: saturate(140%) blur(6px);
border-bottom: 1px solid rgba(108,117,125,.25);
}
.content {
flex: 1 0 auto;
padding-top: 3rem;
padding-bottom: 3rem;
}
.hero {
background: linear-gradient(135deg, var(--card), transparent 60%);
border: 1px solid rgba(108,117,125,.25);
}
footer {
flex-shrink: 0;
border-top: 1px solid rgba(108,117,125,.25);
color: var(--muted);
}
a { color: var(--link); }
a:focus-visible, button:focus-visible {
outline: 2px dashed var(--link);
outline-offset: 2px;
}
</style>
</head>
<body>
<!-- Header -->
<header class="py-3 sticky-top bg-body">
<nav class="container d-flex justify-content-between align-items-center">
<span class="fs-4 fw-semibold">Michael Male</span>
<!-- Simple “Skip to content” for accessibility -->
<a class="visually-hidden-focusable" href="#main">Skip to content</a>
</nav>
</header>
<!-- Main content -->
<main id="main" class="content">
<div class="container">
<section class="p-4 p-md-5 rounded-4 hero">
<h3 class="mb-3">Hello</h3>
<p class="lead mb-0">
Please find my LinkedIn page
<a href="https://www.linkedin.com/in/michaelmale">here</a>.
</p>
</section>
</div>
</main>
<!-- Footer -->
<footer class="py-4 bg-body-tertiary">
<div class="container small d-flex flex-column flex-sm-row justify-content-between gap-2">
<span>© <span id="year"></span> Michael Male</span>
</div>
</footer>
<!-- Bootstrap JS Bundle (includes Popper) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"></script>
<!-- Tiny inline script just to set the year -->
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>