abeea commited on
Commit
ddbf69d
Β·
verified Β·
1 Parent(s): fe13003

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +63 -1
index.html CHANGED
@@ -226,6 +226,41 @@
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,6 +1746,24 @@
1711
  </div>
1712
  </section>
1713
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1714
  <!-- πŸ“¬ Contact the Author -->
1715
  <section id="contact" class="thanks-section">
1716
  <h2>Contact the Author</h2>
@@ -1739,8 +1792,17 @@
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>
 
226
  </head>
227
  <body>
228
 
229
+ <!-- πŸ“’ WhatsApp Follow Popup -->
230
+ <div class="modal fade" id="whatsappModal" tabindex="-1">
231
+ <div class="modal-dialog modal-dialog-centered">
232
+ <div class="modal-content text-center p-4" style="border-radius: 1rem;">
233
+
234
+ <div class="modal-header border-0">
235
+ <h5 class="modal-title w-100 fw-bold" style="color:#8a5b44;">
236
+ Stay Connected πŸ’¬
237
+ </h5>
238
+ </div>
239
+
240
+ <div class="modal-body">
241
+ <p style="font-size:1.1rem;">
242
+ Follow the WhatsApp Channel of
243
+ <strong>Mohsin Kamil</strong><br>
244
+ for updates about upcoming stories and new releases.
245
+ </p>
246
+
247
+ <a href="https://whatsapp.com/channel/0029VbAgettLikgIpQysAz3M"
248
+ target="_blank"
249
+ class="btn btn-success mt-3 px-4">
250
+ Follow on WhatsApp
251
+ </a>
252
+ </div>
253
+
254
+ <div class="modal-footer border-0 justify-content-center">
255
+ <button type="button" class="btn btn-outline-dark" data-bs-dismiss="modal">
256
+ Maybe Later
257
+ </button>
258
+ </div>
259
+
260
+ </div>
261
+ </div>
262
+ </div>
263
+
264
  <!-- πŸ–¨οΈ Download Button -->
265
  <div class="text-center download-btn">
266
  <button id="downloadPDF" class="btn btn-outline-dark">πŸ“„ Download PDF</button>
 
1746
  </div>
1747
  </section>
1748
 
1749
+ <!-- πŸ“’ Follow on WhatsApp Section -->
1750
+ <section id="whatsapp-follow" class="thanks-section">
1751
+ <h2>Follow for More Stories</h2>
1752
+ <p>
1753
+ Want updates about upcoming stories and exclusive releases?<br><br>
1754
+ Follow the official WhatsApp Channel of
1755
+ <strong>Mohsin Kamil</strong> and stay connected.
1756
+ </p>
1757
+
1758
+ <a href="https://whatsapp.com/channel/0029VbAgettLikgIpQysAz3M"
1759
+ target="_blank"
1760
+ class="btn btn-success mt-3 px-4">
1761
+ Join WhatsApp Channel
1762
+ </a>
1763
+ </section>
1764
+
1765
+
1766
+
1767
  <!-- πŸ“¬ Contact the Author -->
1768
  <section id="contact" class="thanks-section">
1769
  <h2>Contact the Author</h2>
 
1792
  document.getElementById("downloadPDF").addEventListener("click", () => {
1793
  window.location.href = "https://drive.google.com/uc?export=download&id=1RUW9BFGpwuOlPZx6tL6EORyiyycXNniL";
1794
  });
1795
+
1796
  </script>
1797
+ <!-- Bootstrap JS (Required for Modal) -->
1798
+ <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
1799
 
1800
+ <script>
1801
+ window.addEventListener("load", function () {
1802
+ const myModal = new bootstrap.Modal(document.getElementById('whatsappModal'));
1803
+ myModal.show();
1804
+ });
1805
+ </script>
1806
 
1807
  </body>
1808
+ </html>