Add rfl_landing.html

This commit is contained in:
2025-06-12 18:43:35 +00:00
parent 82de3762ef
commit 208f6da671

72
rfl_landing.html Normal file
View File

@@ -0,0 +1,72 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to Richards Free Library WiFi</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
margin: 0;
padding: 0;
background: #f6f8fa;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 500px;
background: white;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
h1 {
color: #2c3e50;
margin-bottom: 0.5rem;
}
p {
color: #555;
line-height: 1.6;
}
a.button {
display: inline-block;
margin-top: 1.5rem;
background: #2c3e50;
color: white;
text-decoration: none;
padding: 0.75rem 1.5rem;
border-radius: 8px;
transition: background 0.3s;
}
a.button:hover {
background: #1a242f;
}
.info {
margin-top: 2rem;
font-size: 0.9rem;
color: #777;
}
</style>
<script defer src="https://track.dhitechnical.com/script.js" data-website-id="e75b79c7-985b-4b68-beea-2d779a055863"></script>
</head>
<body>
<div class="container">
<h1>Welcome to Richards Free Library</h1>
<p>You are now connected to the library WiFi.</p>
<p>Explore our digital resources, browse the catalog, or just enjoy your time here.</p>
<a class="button" href="https://richardsfreelib.org/">Visit Our Website</a>
<div class="info">
<p><strong>Hours:</strong><br>
MonFri: 9am6pm<br>
Sat: 9am1pm<br>
Sun: Closed</p>
<p><strong>Need help?</strong> Ask a librarian or call us at (603) 863-3430.</p>
</div>
</div>
</body>
</html>