<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chartered Studies E-Library</title>
<style>
body {
font-family: 'Poppins', sans-serif;
text-align: center;
padding: 20px;
background-color: #30c7b5;
color: #000;
margin: 0;
}
.container {
max-width: 800px;
margin: auto;
background: rgba(255, 255, 255, 0.1);
padding: 30px;
border-radius: 15px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.header {
font-size: 32px;
font-weight: bold;
margin-bottom: 10px;
}
.sub-header {
font-size: 20px;
color: #000;
margin-bottom: 20px;
}
.feature-list {
list-style-type: none;
padding: 0;
}
.feature-list li {
font-size: 18px;
padding: 12px 0;
background: rgba(255, 255, 255, 0.2);
border-radius: 8px;
margin: 8px 0;
}
.cta-button {
background-color: #004aad;
color: #fff;
padding: 14px 28px;
border: none;
border-radius: 10px;
font-size: 20px;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
}
.cta-button:hover {
background-color: #002b80;
}
.highlight {
font-weight: bold;
color: #004aad;
}
</style>
</head>
<body>
<div class="container">
<div class="header">📚 Chartered Studies E-Library</div>
<div class="sub-header">Your Ultimate Virtual Study Space!</div>
<ul class="feature-list">
<li>✅ <span class="highlight">Live Study</span> with a Focused Community</li>
<li>✅ Just <span class="highlight">₹49/Month</span> – Most Affordable Study Group</li>
<li>✅ <span class="highlight">24/7 Zoom Study Room</span> with Cameras On</li>
<li>✅ <span class="highlight">Accountability & Productivity Tracking</span></li>
<li>✅ Find <span class="highlight">Study Buddies</span> & Build a Strong Network</li>
<li>✅ <span class="highlight">Live Study Challenges</span> & Productivity Hacks</li>
<li>✅ Pass Your Exam & Get a <span class="highlight">Trophy & Medal</span> Delivered!</li>
<li>✅ <span class="highlight">Exclusive Perks</span> for Chartered Studies Test Series Users</li>
</ul>
<button class="cta-button">🚀 Join Now & Stay Consistent!</button>
</div>
</body>
</html>