-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathebooks.html
More file actions
55 lines (44 loc) · 1.34 KB
/
Copy pathebooks.html
File metadata and controls
55 lines (44 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>E-Books | Polymath Study Point</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>📘 Our E-Books</h1>
<p>Instant delivery via WhatsApp</p>
</header>
<nav>
<a href="index.html">🏠 Home</a>
<a href="current-affairs.html">📰 Current Affairs</a>
</nav>
<main class="grid">
<!-- Ebook 1 -->
<div class="card">
<h3>UPSC Current Affairs (Monthly)</h3>
<p>Exam-focused current affairs notes for UPSC aspirants.</p>
<a class="buy-btn"
target="_blank"
href="https://wa.me/919044443252?text=Hi%2C%20I%20want%20to%20buy%20the%20UPSC%20Current%20Affairs%20Ebook%20from%20Polymath%20Study%20Point">
Buy on WhatsApp
</a>
</div>
<!-- Ebook 2 -->
<div class="card">
<h3>Polity Quick Revision Notes</h3>
<p>Concise polity concepts with PYQ-based explanations.</p>
<a class="buy-btn"
target="_blank"
href="https://wa.me/919044443252?text=Hi%2C%20I%20want%20to%20buy%20the%20Polity%20Quick%20Revision%20Notes%20from%20Polymath%20Study%20Point">
Buy on WhatsApp
</a>
</div>
</main>
<footer>
© 2026 Polymath Study Point
</footer>
</body>
</html>