Update index.html
Browse files- index.html +1 -81
index.html
CHANGED
|
@@ -219,24 +219,6 @@
|
|
| 219 |
text-decoration: underline;
|
| 220 |
}
|
| 221 |
|
| 222 |
-
|
| 223 |
-
/* WhatsApp Custom Button Theme */
|
| 224 |
-
.whatsapp-btn {
|
| 225 |
-
background-color: #8a5b44;
|
| 226 |
-
color: #ffffff;
|
| 227 |
-
border: none;
|
| 228 |
-
padding: 0.6rem 1.8rem;
|
| 229 |
-
border-radius: 50px;
|
| 230 |
-
font-weight: 600;
|
| 231 |
-
transition: all 0.3s ease;
|
| 232 |
-
}
|
| 233 |
-
|
| 234 |
-
.whatsapp-btn:hover {
|
| 235 |
-
background-color: #6a453b;
|
| 236 |
-
transform: translateY(-2px);
|
| 237 |
-
}
|
| 238 |
-
|
| 239 |
-
|
| 240 |
.download-btn {
|
| 241 |
margin: 2rem auto 0;
|
| 242 |
}
|
|
@@ -244,41 +226,6 @@
|
|
| 244 |
</head>
|
| 245 |
<body>
|
| 246 |
|
| 247 |
-
<!-- π’ WhatsApp Follow Popup -->
|
| 248 |
-
<div class="modal fade" id="whatsappModal" tabindex="-1">
|
| 249 |
-
<div class="modal-dialog modal-dialog-centered">
|
| 250 |
-
<div class="modal-content text-center p-4" style="border-radius: 1rem;">
|
| 251 |
-
|
| 252 |
-
<div class="modal-header border-0">
|
| 253 |
-
<h5 class="modal-title w-100 fw-bold" style="color:#8a5b44;">
|
| 254 |
-
Stay Connected π¬
|
| 255 |
-
</h5>
|
| 256 |
-
</div>
|
| 257 |
-
|
| 258 |
-
<div class="modal-body">
|
| 259 |
-
<p style="font-size:1.1rem;">
|
| 260 |
-
Follow the WhatsApp Channel of
|
| 261 |
-
<strong>Mohsin Kamil</strong><br>
|
| 262 |
-
for updates about upcoming stories and new releases.
|
| 263 |
-
</p>
|
| 264 |
-
|
| 265 |
-
<a href="https://whatsapp.com/channel/0029VbAgettLikgIpQysAz3M"
|
| 266 |
-
target="_blank"
|
| 267 |
-
class="whatsapp-btn mt-3"
|
| 268 |
-
Follow on WhatsApp
|
| 269 |
-
</a>
|
| 270 |
-
</div>
|
| 271 |
-
|
| 272 |
-
<div class="modal-footer border-0 justify-content-center">
|
| 273 |
-
<button type="button" class="btn btn-outline-dark" data-bs-dismiss="modal">
|
| 274 |
-
Maybe Later
|
| 275 |
-
</button>
|
| 276 |
-
</div>
|
| 277 |
-
|
| 278 |
-
</div>
|
| 279 |
-
</div>
|
| 280 |
-
</div>
|
| 281 |
-
|
| 282 |
<!-- π¨οΈ Download Button -->
|
| 283 |
<div class="text-center download-btn">
|
| 284 |
<button id="downloadPDF" class="btn btn-outline-dark">π Download PDF</button>
|
|
@@ -1764,24 +1711,6 @@
|
|
| 1764 |
</div>
|
| 1765 |
</section>
|
| 1766 |
|
| 1767 |
-
<!-- π’ Follow on WhatsApp Section -->
|
| 1768 |
-
<section id="whatsapp-follow" class="thanks-section">
|
| 1769 |
-
<h2>Follow for More Stories</h2>
|
| 1770 |
-
<p>
|
| 1771 |
-
Want updates about upcoming stories and exclusive releases?<br><br>
|
| 1772 |
-
Follow the official WhatsApp Channel of
|
| 1773 |
-
<strong>Mohsin Kamil</strong> and stay connected.
|
| 1774 |
-
</p>
|
| 1775 |
-
|
| 1776 |
-
<a href="https://whatsapp.com/channel/0029VbAgettLikgIpQysAz3M"
|
| 1777 |
-
target="_blank"
|
| 1778 |
-
class="whatsapp-btn mt-3"
|
| 1779 |
-
Join WhatsApp Channel
|
| 1780 |
-
</a>
|
| 1781 |
-
</section>
|
| 1782 |
-
|
| 1783 |
-
|
| 1784 |
-
|
| 1785 |
<!-- π¬ Contact the Author -->
|
| 1786 |
<section id="contact" class="thanks-section">
|
| 1787 |
<h2>Contact the Author</h2>
|
|
@@ -1810,17 +1739,8 @@
|
|
| 1810 |
document.getElementById("downloadPDF").addEventListener("click", () => {
|
| 1811 |
window.location.href = "https://drive.google.com/uc?export=download&id=1RUW9BFGpwuOlPZx6tL6EORyiyycXNniL";
|
| 1812 |
});
|
| 1813 |
-
|
| 1814 |
</script>
|
| 1815 |
-
<!-- Bootstrap JS (Required for Modal) -->
|
| 1816 |
-
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
| 1817 |
|
| 1818 |
-
<script>
|
| 1819 |
-
window.addEventListener("load", function () {
|
| 1820 |
-
const myModal = new bootstrap.Modal(document.getElementById('whatsappModal'));
|
| 1821 |
-
myModal.show();
|
| 1822 |
-
});
|
| 1823 |
-
</script>
|
| 1824 |
|
| 1825 |
</body>
|
| 1826 |
-
</html>
|
|
|
|
| 219 |
text-decoration: underline;
|
| 220 |
}
|
| 221 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 222 |
.download-btn {
|
| 223 |
margin: 2rem auto 0;
|
| 224 |
}
|
|
|
|
| 226 |
</head>
|
| 227 |
<body>
|
| 228 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 229 |
<!-- π¨οΈ Download Button -->
|
| 230 |
<div class="text-center download-btn">
|
| 231 |
<button id="downloadPDF" class="btn btn-outline-dark">π Download PDF</button>
|
|
|
|
| 1711 |
</div>
|
| 1712 |
</section>
|
| 1713 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1714 |
<!-- π¬ Contact the Author -->
|
| 1715 |
<section id="contact" class="thanks-section">
|
| 1716 |
<h2>Contact the Author</h2>
|
|
|
|
| 1739 |
document.getElementById("downloadPDF").addEventListener("click", () => {
|
| 1740 |
window.location.href = "https://drive.google.com/uc?export=download&id=1RUW9BFGpwuOlPZx6tL6EORyiyycXNniL";
|
| 1741 |
});
|
|
|
|
| 1742 |
</script>
|
|
|
|
|
|
|
| 1743 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1744 |
|
| 1745 |
</body>
|
| 1746 |
+
</html>
|