-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (130 loc) · 5.35 KB
/
index.html
File metadata and controls
142 lines (130 loc) · 5.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Technology Channel Courses Refund Policy. Learn more about our refund policy and how to request a refund for your IT courses.">
<title>Refund Policy - Technology Channel</title>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow-x: hidden;
background-color: #313335;
color: #fff;
font-family: Arial, sans-serif;
line-height: 1.6;
}
body {
display: flex;
flex-direction: column;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
header h1 {
margin: 0;
}
main {
flex: 1;
padding: 20px;
max-width: 800px;
margin: 20px auto;
background-color: #414345;
color: #fff;
border-radius: 8px;
box-sizing: border-box;
}
h2 {
color: #fff;
}
h3 {
color: #ccc;
}
ul, ol {
margin: 10px 0;
padding: 0 20px;
}
.back-to-home {
display: block;
margin: 20px 0;
padding: 10px 20px;
background-color: #1e90ff;
color: #fff;
text-align: center;
text-decoration: none;
border-radius: 5px;
}
.back-to-home:hover {
background-color: #0c7dc0;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: relative;
width: 100%;
}
a {
color: #1e90ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Technology Channel Courses Refund Policy</h1>
</header>
<main>
<section class="refund-policy" aria-labelledby="refund-policy-title">
<h2 id="refund-policy-title">Refund Policy</h2>
<p>
At Technology Channel, we are committed to providing you with the highest quality IT education and training. Your satisfaction is our top priority. Therefore, we offer a comprehensive refund policy to ensure you have a risk-free learning experience.
</p>
<h3>Refund Eligibility:</h3>
<ul>
<li><strong>100% Money-Back Guarantee:</strong> If you are not satisfied with the course or feel that you did not learn as expected, you are eligible for a full refund within the first 7 days of your enrollment.</li>
<li><strong>Request Period:</strong> Refund requests must be submitted within 7 days from the date of enrollment to be eligible for a full refund.</li>
</ul>
<h3>How to Request a Refund:</h3>
<ol>
<li><strong>Contact Us:</strong> To request a refund, please contact our support team at <a href="mailto:[email protected]">[email protected]</a></li>
<li><strong>Provide Details:</strong> Include your name, course enrolled in, date of enrollment, and the reason for your refund request.</li>
<li><strong>Processing Time:</strong> Our team will review your request and process your refund within 5-7 business days. You will receive a confirmation email once your refund has been processed.</li>
</ol>
<h3>Why We Offer This Guarantee:</h3>
<p>
We believe in the quality and effectiveness of our courses. This refund policy is designed to give you peace of mind and confidence in your investment. Our goal is to ensure that you have the best learning experience possible, with content that is engaging, practical, and valuable for your career growth.
</p>
<h3>Terms and Conditions:</h3>
<ul>
<li>Refunds are only available within the first 7 days of enrollment.</li>
<li>Refund requests made after the 7 days will not be eligible for a refund.</li>
<li>Refunds will be processed using the original method of payment.</li>
<li>We reserve the right to refuse a refund if we believe there is abuse of our refund policy.</li>
</ul>
<h3>Commitment to Quality:</h3>
<p>
Our courses are crafted by industry experts and designed to provide you with the knowledge and skills needed to excel in the IT field. We are dedicated to your success and stand by the quality of our content.
</p>
<h3>Contact Information:</h3>
<p>
Email: <a href="mailto:[email protected]">[email protected]</a><br>
Phone: +977 9805832889
</p>
</section>
<a href="https://technologychannel.org" class="back-to-home" aria-label="Go back to the Technology Channel homepage">Back to Home</a>
</main>
<footer>
<p>© 2025 Technology Channel. All rights reserved.</p>
</footer>
</body>
</html>