<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bible Quiz & Free Gift</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
background: #f9f9f9;
color: #333;
text-align: center;
}
header {
background: #2c3e50;
color: white;
padding: 30px;
}
h1 {
margin: 0;
}
p {
font-size: 18px;
}
.btn {
display: inline-block;
padding: 12px 25px;
margin: 10px;
background: #27ae60;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
}
.btn:hover {
background: #219150;
}
footer {
background: #2c3e50;
color: white;
padding: 15px;
font-size: 14px;
}
</style>
</head>
<body>
<header>
<h1>Test Your Bible Knowledge</h1>
<p>Play the quiz and get your free Bible Stories eBook!</p>
</header>
<main>
<a href="QUIZ_PAGE_URL" class="btn">🎯 Play Bible Quiz</a>
<a href="FREE_GIFT_FORM_URL" class="btn">🎁 Get Free Gift</a>
</main>
<footer>
<p>© 2025 BibleQuiz4Faith | Visit our <a href="YOUR_YOUTUBE_LINK" style="color: #f1c40f;">YouTube Channel</a></p>
</footer>
</body>
</html>