93 lines
2.8 KiB
HTML
93 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>HomeLab Presentation - 2026-05-01</title>
|
|
<style>
|
|
body {
|
|
font-family:
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
"Helvetica Neue", Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #e6edf3;
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
background-color: #0d1117;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
header {
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
}
|
|
h1 {
|
|
color: #e6edf3;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.date {
|
|
color: #8b949e;
|
|
font-style: italic;
|
|
}
|
|
.pdf-container {
|
|
width: 100%;
|
|
height: 80vh;
|
|
border: 1px solid #21262d;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
}
|
|
.controls {
|
|
margin-top: 1rem;
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 0.5rem 1rem;
|
|
background-color: #1f6feb;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
transition: background-color 0.2s;
|
|
}
|
|
.btn:hover {
|
|
background-color: #388bfd;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>HomeLab Presentation</h1>
|
|
<p class="date">May 1, 2026</p>
|
|
</header>
|
|
|
|
<div class="pdf-container">
|
|
<iframe
|
|
src="FLUG_Presentation_Slides.pdf"
|
|
width="100%"
|
|
height="100%"
|
|
style="border: none"
|
|
>
|
|
<p>
|
|
Your browser does not support iframes. Please
|
|
<a href="FLUG_Presentation_Slides.pdf"
|
|
>click here to view the presentation.</a
|
|
>
|
|
</p>
|
|
</iframe>
|
|
</div>
|
|
|
|
<div class="controls">
|
|
<a href="FLUG_Presentation_Slides.pdf" target="_blank" class="btn"
|
|
>Open PDF in New Tab</a
|
|
>
|
|
<a href="FLUG_Presentation_Slides.pdf" download class="btn"
|
|
>Download PDF</a
|
|
>
|
|
</div>
|
|
</body>
|
|
</html>
|