<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hit Fire TV – IPTV Streaming Service</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #0d0d0d;
color: #fff;
}
header {
background-color: #1a1a1a;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2em;
}
nav {
text-align: center;
padding: 10px 0;
background-color: #141414;
}
nav a {
color: #f90;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
}
.hero {
padding: 60px 20px;
text-align: center;
}
.hero h2 {
font-size: 2em;
margin-bottom: 20px;
}
.buttons a {
display: inline-block;
margin: 10px;
padding: 15px 25px;
background-color: #f90;
color: #000;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
footer {
background-color: #1a1a1a;
text-align: center;
padding: 20px;
font-size: 0.9em;
color: #999;
}
</style>
</head>
<body>
<header>
<h1>Hit Fire TV</h1>
<p>Premium IPTV Streaming Service</p>
</header>
<nav>
<a href="#downloads">Downloads</a>
<a href="/billing/clientarea.php">Login</a>
<a href="/billing/register.php">Register</a>
<a href="/billing/cart.php">Packages</a>
</nav>
<section class="hero">
<h2>Get Started with Hit Fire TV</h2>
<div class="buttons">
<a href="#downloads">Download Apps</a>
<a href="/billing/cart.php">View Packages</a>
</div>
</section>
<section id="downloads" class="hero">
<h2>Download Our IPTV Apps</h2>
<div class="buttons">
<a href="/downloads/HitFireTV_Android.apk">Download for Android</a>
<a href="/downloads/HitFireTV_FireTV.apk">Download for Fire TV</a>
</div>
</section>
<footer>
© 2025 Hit Fire TV. All rights reserved.
</footer>
</body>
</html>