-
Notifications
You must be signed in to change notification settings - Fork 0
/
tnc.html
80 lines (63 loc) · 2.54 KB
/
tnc.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BitWise Learning - Terms and Conditions</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;
}
.terms-container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.terms-content {
line-height: 1.6;
}
.section-title {
color: #333;
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
margin-bottom: 15px;
font-weight: 900;
}
</style>
</head>
<body>
<header>
<h1>BitWise Learning - Terms and Conditions</h1>
</header>
<div class="terms-container">
<div class="terms-content">
<div class="section-title">1. Acceptance of Terms</div>
<p>By using BitWise Learning, you agree to abide by these Terms and Conditions. If you do not agree with any part of these terms, please do not use our services.</p>
<div class="section-title">2. Services</div>
<p>BitWise Learning provides various services, including programming courses, web development, and technology consulting. Users are expected to comply with the outlined guidelines and policies.</p>
<div class="section-title">3. User Responsibilities</div>
<p>Users are responsible for maintaining the confidentiality of their account information. Any use of the services that violates applicable laws or regulations is strictly prohibited.</p>
<div class="section-title">4. Intellectual Property</div>
<p>The content on BitWise Learning, including but not limited to text, graphics, and logos, is the intellectual property of BitWise Learning and is protected by copyright law.</p>
<div class="section-title">5. Changes to Terms</div>
<p>BitWise Learning reserves the right to modify these Terms and Conditions at any time. Users will be notified of changes, and continued use of the services constitutes acceptance of the modified terms.</p>
<div class="section-title">6. Contact Information</div>
<p>For inquiries or concerns regarding these Terms and Conditions, please contact us at <a href="mailto:[email protected]">[email protected]</a>.</p>
</div>
</div>
</body>
</html>