forked from PriyaGhosal/SkillWise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terms.html
115 lines (105 loc) · 3.62 KB
/
terms.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Use</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f9fafc;
color: #1a1a1a;
margin: 0;
padding: 0;
line-height: 1.7;
}
header {
background-color: #ff9800;
color: white;
text-align: center;
padding: 40px 20px;
border-bottom: 4px solid #f57c00;
}
header h1 {
font-size: 2.5rem;
margin: 0;
}
main {
max-width: 900px;
margin: 20px auto;
padding: 30px;
background-color: white;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
border-radius: 12px;
}
section {
margin-bottom: 20px;
}
section h2 {
color: #00bfa5;
font-size: 1.5rem;
margin-bottom: 10px;
display: flex;
align-items: center;
}
section h2:before {
content: '⚖️';
margin-right: 10px;
}
section p {
color: #555;
font-size: 1rem;
margin-bottom: 15px;
}
footer {
background-color: #f1f3f4;
text-align: center;
padding: 20px;
font-size: 0.9rem;
margin-top: 40px;
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<header>
<h1>Terms of Use</h1>
<p>Your access to our services is governed by the following terms.</p>
</header>
<main>
<section>
<h2>Introduction</h2>
<p>Welcome to SkillWise! By using our website, you agree to be bound by these Terms of Use. Please review them carefully.</p>
</section>
<section>
<h2>1. Acceptance of Terms</h2>
<p>By accessing and interacting with our services, you acknowledge that you have read and understood the terms and agree to comply with them fully.</p>
</section>
<section>
<h2>2. Updates to Terms</h2>
<p>We reserve the right to update these terms periodically. Continued use of the website after changes signifies your acceptance of the modified terms.</p>
</section>
<section>
<h2>3. User Responsibilities</h2>
<p>All users are expected to interact responsibly and lawfully while using our platform. Activities violating local or international laws are strictly prohibited.</p>
</section>
<section>
<h2>4. Intellectual Property Rights</h2>
<p>All content on this site, including text, graphics, and code, belongs to SkillWise. Unauthorized use, reproduction, or distribution of our content is prohibited.</p>
</section>
<section>
<h2>5. Liability Limitations</h2>
<p>SkillWise is not liable for damages incurred as a result of using our platform, including but not limited to indirect or consequential losses.</p>
</section>
<section>
<h2>6. Governing Jurisdiction</h2>
<p>These terms are governed by the applicable laws of the user's jurisdiction. Any disputes shall be resolved under the governing laws in place.</p>
</section>
</main>
<footer>
<p>© 2024 SkillWise. All Rights Reserved. | Privacy Policy | Contact Us</p>
</footer>
</body>
</html>