-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolicy.html
119 lines (106 loc) · 3.13 KB
/
policy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BitWise Learning - Policies</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}
header {
background-color: #00b4d8;
color: white;
text-align: center;
padding: 15px 0;
}
h1 {
margin: 0;
}
.policy-container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.policy-section {
margin-bottom: 20px;
}
.policy-section h2 {
color: #333;
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
margin-bottom: 15px;
}
.policy-content {
line-height: 1.6;
}
</style>
</head>
<body>
<header>
<h1>BitWise Learning - Policies</h1>
</header>
<div class="policy-container">
<div class="policy-section">
<h2>Privacy Policy</h2>
<div class="policy-content">
<p>
We respect your privacy and are committed to protecting your
personal information. Our Privacy Policy outlines how we collect,
use, and safeguard your data.
</p>
<!-- Add more privacy policy content as needed -->
</div>
</div>
<div class="policy-section">
<h2>Refund Policy</h2>
<div class="policy-content">
<p>
We have a transparent refund policy to ensure your satisfaction.
Please review our Refund Policy page for details on the refund
process.
</p>
<!-- Add more refund policy content as needed -->
</div>
</div>
<div class="policy-section">
<h2>Terms of Service</h2>
<div class="policy-content">
<p>
By using BitWise Learning, you agree to abide by our Terms of
Service. These terms govern your use of our website and services.
</p>
<!-- Add more terms of service content as needed -->
</div>
</div>
<div class="policy-section">
<h2>Cookie Policy</h2>
<div class="policy-content">
<p>
Our Cookie Policy explains how we use cookies to enhance your
browsing experience. By using our website, you consent to our use of
cookies.
</p>
<!-- Add more cookie policy content as needed -->
</div>
</div>
<div class="policy-section">
<h2>Acceptable Use Policy</h2>
<div class="policy-content">
<p>
Our Acceptable Use Policy outlines the acceptable behavior and usage
of our services. Users are expected to comply with the outlined
guidelines.
</p>
<!-- Add more acceptable use policy content as needed -->
</div>
</div>
<!-- Add more policy sections as needed -->
</div>
</body>
</html>