<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>Recharge Offers</title>
<link rel="stylesheet"
href="css/style.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"/>
</head>
<body>
<!-- =========================
TOPBAR
========================= -->
<div class="topbar">
<h1>
Recharge Offers
</h1>
<div class="search-area">
<input
type="text"
id="search"
placeholder="Search Offers">
</div>
</div>
<!-- =========================
CATEGORY TABS
========================= -->
<div class="tabs">
<button onclick="filterCategory('All')">
All
</button>
<button onclick="filterCategory('Bundles')">
Bundles
</button>
<button onclick="filterCategory('Internet')">
Internet
</button>
<button onclick="filterCategory('Minutes')">
Minutes
</button>
<button onclick="filterCategory('SMS')">
SMS
</button>
</div>
<!-- =========================
OFFERS CONTAINER
========================= -->
<div
id="offers"
class="offers-grid">
</div>
<!-- =========================
BOTTOM NAVIGATION
========================= -->
<div style="
position:fixed;
bottom:0;
left:0;
width:100%;
background:white;
display:flex;
justify-content:space-around;
padding:12px 0;
box-shadow:0 -2px 10px rgba(0,0,0,0.1);
z-index:999;
">
<div style="text-align:center;">
<i class="fa-solid fa-house"
style="font-size:22px;color:#0d816c;"></i>
<p style="font-size:12px;">
Home
</p>
</div>
<div style="text-align:center;">
<i class="fa-solid fa-fire"
style="font-size:22px;color:#777;"></i>
<p style="font-size:12px;">
Offers
</p>
</div>
<div style="text-align:center;">
<i class="fa-solid fa-clock-rotate-left"
style="font-size:22px;color:#777;"></i>
<p style="font-size:12px;">
History
</p>
</div>
<div style="text-align:center;">
<i class="fa-solid fa-user"
style="font-size:22px;color:#777;"></i>
<p style="font-size:12px;">
Account
</p>
</div>
</div>
<!-- =========================
JS
========================= -->
<script src="js/app.js"></script>
</body>
</html>