-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (138 loc) Β· 4.89 KB
/
index.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NEET Study Bundle Offer</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
color: #333;
margin: 0;
padding: 0;
}
.header {
text-align: center;
color: #FF5733;
padding: 30px 0;
}
.header h1 {
font-size: 36px;
margin: 0;
}
.header p {
font-size: 18px;
margin-top: 10px;
}
.bundle-list {
margin: 20px 0;
font-size: 18px;
text-align: center;
}
.bundle-list ul {
list-style-type: none;
padding-left: 0;
}
.bundle-list ul li {
padding: 10px 0;
font-weight: bold;
}
.highlight {
color: #FF5733;
}
.cta {
text-align: center;
margin-top: 30px;
}
.cta a {
background-color: #4CAF50;
color: white;
padding: 15px 30px;
font-size: 18px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.cta a:hover {
background-color: #45a049;
}
.footer {
text-align: center;
margin-top: 30px;
font-size: 14px;
color: #777;
}
.hashtag {
color: #FF5733;
}
.button-wrapper {
text-align: center;
margin-top: 20px;
}
.button-wrapper button {
background-color: #FF5733;
color: white;
padding: 12px 25px;
border: none;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.button-wrapper button:hover {
background-color: #f4511e;
}
</style>
</head>
<body>
<div class="header">
<h1>π¨ <span class="highlight">NEET Aspirants, Your Ultimate Study Bundle is Here!</span> π¨</h1>
<p>Get ready to <span class="highlight">crack NEET 2025</span> with the most <span class="highlight">comprehensive study resources</span>! All the materials you need, in one <span class="highlight">amazing package</span>. ππ₯</p>
</div>
<div class="bundle-list">
<ul>
<li>πΉ <span class="highlight">Unacademy Modules Rankers Test</span></li>
<li>πΉ <span class="highlight">Physics Wallah Modules</span></li>
<li>πΉ <span class="highlight">Physics Wallah Mindmaps</span></li>
<li>πΉ <span class="highlight">NCERT PUNCH</span> & <span class="highlight">NCERT Exempler</span></li>
<li>πΉ <span class="highlight">MTG Books</span> & <span class="highlight">Med Easy</span></li>
<li>πΉ <span class="highlight">JEE Mains 5 Years PYQs</span> <span class="highlight">Hacks by Parthgoyal</span></li>
<li>πΉ <span class="highlight">ALLEN Test Series</span> & <span class="highlight">ALLEN Modules</span></li>
<li>πΉ <span class="highlight">Akash Test Series</span> & <span class="highlight">Akash Modules 2025</span></li>
<li>πΉ <span class="highlight">Akash Mindmaps</span></li>
<li>πΉ <span class="highlight">45 Days Crash Course</span></li>
<li>πΉ <span class="highlight">33 Years NEET PYQs</span></li>
<li>πΉ <span class="highlight">11 Years NEET PYQs</span></li>
</ul>
</div>
<div class="cta">
<h3>π― <span class="highlight">Why Choose This Bundle?</span></h3>
<ul>
<li>βοΈ All-in-one solution for <span class="highlight">NEET Preparation</span></li>
<li>βοΈ <span class="highlight">Mindmaps</span> & <span class="highlight">Shortcuts</span> for quick revision</li>
<li>βοΈ Detailed <span class="highlight">Previous Years' Questions</span></li>
<li>βοΈ <span class="highlight">Crash Course</span> to maximize your study in a short time</li>
<li>βοΈ Trusted books like <span class="highlight">MTG</span> and <span class="highlight">Med Easy</span> for concept clarity</li>
<li>βοΈ In-depth practice with <span class="highlight">33 Years</span> and <span class="highlight">11 Years</span> of NEET PYQs</li>
</ul>
</div>
<div class="cta">
<h3>π₯ <span class="highlight">Everything you need to ace NEET 2025 in one place!</span> π₯</h3>
<div class="button-wrapper">
<button onclick="window.location.href='https://payments.cashfree.com/forms/Eduhub'">Secure Your Bundle Now!</button>
</div>
</div>
<div class="footer">
<p>π <span class="highlight">Limited Time Offer β Grab It Now!</span></p>
<p>π₯ Start your <span class="highlight">NEET journey</span> with the best study resources! π₯</p>
<p>#NEET2025 #NEETPreparation #BestStudyMaterials #EduHub #CrackNEET #TopResources</p>
</div>
<script>
// JavaScript can be used to add more interactivity if needed
document.querySelector("button").addEventListener("click", function() {
alert("You are being redirected to the study bundle page!");
});
</script>
</body>
</html>