abeea commited on
Commit
ea9c2f8
·
verified ·
1 Parent(s): 0a78109

Create whatsapp-section.html

Browse files
Files changed (1) hide show
  1. whatsapp-section.html +123 -0
whatsapp-section.html ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <style>
2
+ .section-wrapper {
3
+ padding: 4rem 2rem;
4
+ background: #fdfaf6;
5
+ display: flex;
6
+ justify-content: center;
7
+ }
8
+
9
+ .elegant-box {
10
+ max-width: 850px;
11
+ width: 100%;
12
+ background: #ffffff;
13
+ padding: 3rem;
14
+ border-radius: 1.5rem;
15
+ box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
16
+ text-align: center;
17
+ font-family: 'Playfair Display', serif;
18
+ }
19
+
20
+ .elegant-box h2 {
21
+ font-size: 2.2rem;
22
+ color: #8a5b44;
23
+ margin-bottom: 1.5rem;
24
+ }
25
+
26
+ .elegant-box p {
27
+ font-size: 1.2rem;
28
+ line-height: 2rem;
29
+ color: #4a3e3e;
30
+ }
31
+
32
+ .follow-btn {
33
+ background-color: #8a5b44;
34
+ color: white;
35
+ padding: 0.6rem 1.8rem;
36
+ border-radius: 50px;
37
+ text-decoration: none;
38
+ display: inline-block;
39
+ margin-top: 1.5rem;
40
+ transition: 0.3s ease;
41
+ }
42
+
43
+ .follow-btn:hover {
44
+ background-color: #6a453b;
45
+ }
46
+ </style>
47
+
48
+
49
+ <!-- 🌟 Special Thanks -->
50
+ <section class="section-wrapper">
51
+ <div class="elegant-box">
52
+ <h2>Special Thanks</h2>
53
+ <p>
54
+ To my sister, <strong>"T"</strong> —<br>
55
+ Thank you for believing in me when I didn’t believe in myself.<br>
56
+ Your unwavering support gave me the strength to publish this.<br>
57
+ This book exists because you never let me give up.
58
+ </p>
59
+ <p style="margin-top:2rem;">— Mohsin Kamil</p>
60
+ </div>
61
+ </section>
62
+
63
+
64
+ <!-- 🙏 Thank You -->
65
+ <section class="section-wrapper">
66
+ <div class="elegant-box">
67
+ <h2>Thank You</h2>
68
+ <p>
69
+ Thank you for taking the time to read <strong>Main Akeli Thi</strong>.<br><br>
70
+ This story holds a special place in my heart, and I hope it resonated with you.<br>
71
+ Your support and encouragement mean the world to me.<br><br>
72
+ Stay kind. Stay connected.
73
+ </p>
74
+ <p style="margin-top:2rem;">— Mohsin Kamil</p>
75
+ </div>
76
+ </section>
77
+
78
+
79
+ <!-- 📢 WhatsApp Follow -->
80
+ <section class="section-wrapper">
81
+ <div class="elegant-box">
82
+ <h2>Follow for More Stories</h2>
83
+ <p>
84
+ Want updates about upcoming stories and exclusive releases?<br><br>
85
+ Follow the official WhatsApp Channel of
86
+ <strong>Mohsin Kamil</strong> and stay connected.
87
+ </p>
88
+
89
+ <a href="https://whatsapp.com/channel/YOUR_CHANNEL_LINK"
90
+ target="_blank"
91
+ class="follow-btn">
92
+ Join WhatsApp Channel
93
+ </a>
94
+ </div>
95
+ </section>
96
+
97
+
98
+ <!-- 📬 Contact the Author -->
99
+ <section class="section-wrapper">
100
+ <div class="elegant-box">
101
+ <h2>Contact the Author</h2>
102
+ <p>
103
+ For feedback, questions, or just to say hello,<br><br>
104
+ 📧 <a href="mailto:Mohsinkamil11@gmail.com" style="color:#8a5b44; font-weight:bold; text-decoration:none;">
105
+ Mohsinkamil11@gmail.com</a>
106
+ </p>
107
+ </div>
108
+ </section>
109
+
110
+
111
+ <!-- © Copyright -->
112
+ <section class="section-wrapper">
113
+ <div class="elegant-box">
114
+ <p>
115
+ Copyright © <strong>Mohsin Kamil Foundation</strong> 2025<br><br>
116
+ All rights reserved. No part of this publication may be reproduced,
117
+ stored in a retrieval system, or transmitted in any form or by any means—
118
+ electronic, mechanical, photocopying, recording, or otherwise—without
119
+ prior written permission of the author.<br><br>
120
+ This e-book is intended for respectful reading and awareness only.
121
+ </p>
122
+ </div>
123
+ </section>