-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfees.html
More file actions
189 lines (167 loc) · 6.55 KB
/
fees.html
File metadata and controls
189 lines (167 loc) · 6.55 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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Course Fees | Deepak IT & Web Services</title>
<style>
:root {
--primary-color: #2c3e50;
--accent-color: #27ae60; /* Green for Success/Growth */
--light-bg: #f8f9fa;
--text-main: #333;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-main);
background-color: #e9ecef;
margin: 0;
padding: 20px;
}
.page-wrapper {
max-width: 900px;
margin: 0 auto;
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
header {
background: var(--primary-color);
color: white;
padding: 30px;
text-align: center;
}
.msme-tag {
background: #f39c12;
color: #000;
padding: 5px 15px;
font-size: 0.8rem;
border-radius: 20px;
font-weight: bold;
display: inline-block;
margin-top: 10px;
}
.fee-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 30px;
}
.fee-card {
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
text-align: center;
background: #fff;
transition: transform 0.3s ease;
}
.fee-card:hover {
transform: translateY(-5px);
border-color: var(--accent-color);
}
.fee-card h3 { color: var(--primary-color); }
.price { font-size: 1.8rem; font-weight: bold; color: var(--accent-color); margin: 15px 0; }
.terms-box {
background: #fffaf0;
border: 1px solid #ffeeba;
padding: 30px;
margin: 0 30px 30px;
border-radius: 8px;
}
.action-area {
text-align: center;
padding: 30px;
background: var(--light-bg);
}
.btn-pay {
background: var(--accent-color);
color: white;
padding: 15px 40px;
border: none;
border-radius: 50px;
font-size: 1.2rem;
font-weight: bold;
cursor: pointer;
text-decoration: none;
display: inline-block;
}
.checkbox-container { margin-bottom: 20px; }
</style>
</head>
<body>
<div class="page-wrapper">
<header>
<h1>Deepak IT & Web Services</h1>
<div class="msme-tag">Registered MSME | NIC 62011</div>
<p>Professional Industrial Training & Internship</p>
</header>
<div class="fee-container">
<div class="fee-card">
<h3>3-Month Fast Track</h3>
<p>IT Support & Web Basics</p>
<div class="price">₹15,000</div>
<ul style="text-align: left; font-size: 0.9rem;">
<li>PC Hardware Troubleshooting</li>
<li>OS & Networking Setup</li>
<li>Training Certificate</li>
</ul>
</div>
<div class="fee-card" style="border-width: 2px; border-color: var(--accent-color);">
<h3>6-Month Professional</h3>
<p>Full-Stack & System Admin</p>
<div class="price">₹30,000</div>
<ul style="text-align: left; font-size: 0.9rem;">
<li>Web & App Development</li>
<li>Live Client Projects</li>
<li>Internship Experience Letter</li>
</ul>
</div>
</div>
<div class="terms-box">
<h4>Training Terms & Conditions:</h4>
<ul style="font-size: 0.9rem;">
<li><strong>Registration:</strong> ₹2,000 required to block your seat.</li>
<li><strong>Refund Policy:</strong> Fees once paid are non-refundable after the first 48 hours of training.</li>
<li><strong>Certification:</strong> Certificates issued only after successful project completion.</li>
<li><strong>Hybrid Model:</strong> Includes both Home-Office practicals and Online sessions.</li>
</ul>
</div>
<div class="action-area">
<div class="checkbox-container">
<label>
<input type="checkbox" id="agree"> I accept the Fees & Terms of <strong>Deepak IT & Web Services</strong>
</label>
</div>
<button class="btn-pay" onclick="verify()">Accept & Chat for Admission</button>
</div>
</div>
<script>
function verify() {
if(document.getElementById('agree').checked) {
alert('Redirecting to WhatsApp for Enrollment details...');
window.location.href = "https://wa.me/918867740113?text=I%20accept%20the%20fees%20and%20terms.%20I%20want%20to%20enroll.";
} else {
alert('Please accept the terms to proceed.');
}
}
</script>
<footer style="background: #2c3e50; color: white; padding: 30px 20px; text-align: center; font-size: 0.85rem; border-top: 4px solid #5f259f; font-family: 'Verdana', sans-serif;">
<div style="max-width: 1000px; margin: 0 auto; line-height: 1.8;">
<p style="font-weight: bold; font-size: 1rem; color: orange; margin-bottom: 5px;">Deepak IT & WebServices | Proprietorship Firm</p>
<p>MSME Registration: <strong>UDYAM-KR-03-0674838</strong> | NIC Code: 62011 (Software Development)</p>
<!-- Policy Links Section -->
<div style="margin: 15px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px;">
<a href="privacy-policy.html" class="menu-item" target="_blank">Privacy Policy</a>
<a href="refund-policy.html" class="menu-item" target="_blank">Refund Policy</a>
<a href="shipping-return.html" class="menu-item" target="_blank">Shipping and Return Policy</a>
<a href="terms.html" class="menu-item" target="_blank">Terms & Conditions</a>
</div>
<p style="color: #bdc3c7; font-size: 0.75rem; margin-top: 10px;">
© 2026 All Rights Reserved. | Support: deepakdesignservice@gmail.com
</p>
</div>
</footer>
</body>
</html>