forked from janavipandole/Cara
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
212 lines (161 loc) · 5.08 KB
/
Copy pathterms.html
File metadata and controls
212 lines (161 loc) · 5.08 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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Terms & Conditions</title>
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./terms.css">
</head>
<body>
<!-- Floating Particles -->
<div class="particles">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<!-- Theme Toggle -->
<button id="themeToggle">🌙</button>
<!-- Background Glow -->
<div class="bg-circle circle1"></div>
<div class="bg-circle circle2"></div>
<div class="container">
<div class="header">
<h1>Terms & Conditions</h1>
<p class="updated">Last Updated — May 2026</p>
</div>
<p class="intro">
Welcome to Cara. By accessing or using our platform, you agree to comply
with these Terms & Conditions. Please read them carefully before using
our services.
</p>
<div class="section">
<h2>📘 <span>01.</span> Acceptance of Terms</h2>
<p>
By accessing this website, you acknowledge that you have read,
understood, and agreed to be bound by these terms and all applicable
laws and regulations.
</p>
</div>
<div class="section">
<h2>⚡ <span>02.</span> Use of the Platform</h2>
<p>
Users must use the platform responsibly and lawfully. Any misuse,
harmful activity, or unauthorized access attempt is strictly prohibited.
</p>
<ul>
<li>Do not upload harmful or malicious content.</li>
<li>Do not misuse platform resources or services.</li>
<li>Respect all users and community standards.</li>
</ul>
</div>
<div class="section">
<h2>🔐 <span>03.</span> User Accounts</h2>
<p>
You are responsible for maintaining the confidentiality of your account
credentials and for all activities performed under your account.
</p>
</div>
<div class="section">
<h2>🎨 <span>04.</span> Intellectual Property</h2>
<p>
All content, branding, logos, graphics, and website materials are the
property of Cara and may not be copied, distributed, or reused without
permission.
</p>
</div>
<div class="section">
<h2>🛡️ <span>05.</span> Privacy Policy</h2>
<p>
Your use of the platform is also governed by our Privacy Policy.
</p>
</div>
<div class="section">
<h2>🌐 <span>06.</span> Third-Party Services</h2>
<p>
Some features may include third-party integrations or external links.
</p>
</div>
<div class="section">
<h2>⚖️ <span>07.</span> Limitation of Liability</h2>
<p>
Cara shall not be held liable for any direct, indirect, or incidental
damages arising from the use of the platform.
</p>
</div>
<div class="section">
<h2>🔄 <span>08.</span> Updates to Terms</h2>
<p>
We reserve the right to modify or update these Terms & Conditions.
</p>
</div>
<div class="section">
<h2>⛔ <span>09.</span> Termination</h2>
<p>
We may suspend or terminate access to the platform for users who
violate these terms.
</p>
</div>
<div class="section">
<h2>📞 <span>10.</span> Contact</h2>
<p>
If you have any questions regarding these Terms & Conditions,
contact us through official support channels.
</p>
</div>
<div class="footer">
© 2026 Cara — All Rights Reserved
</div>
</div>
<!-- Back To Top -->
<button id="backToTop">↑</button>
<script>
/* DARK MODE */
const toggleBtn = document.getElementById("themeToggle");
toggleBtn.addEventListener("click", () => {
document.body.classList.toggle("light-mode");
if(document.body.classList.contains("light-mode")){
toggleBtn.innerHTML = "🌙";
} else {
toggleBtn.innerHTML = "☀️";
}
});
/* BACK TO TOP */
const backToTop = document.getElementById("backToTop");
window.addEventListener("scroll", () => {
if(window.scrollY > 300){
backToTop.classList.add("show");
} else {
backToTop.classList.remove("show");
}
});
backToTop.addEventListener("click", () => {
window.scrollTo({
top:0,
behavior:"smooth"
});
});
/* SECTION FADE */
const sections = document.querySelectorAll(".section");
const observer = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if(entry.isIntersecting){
entry.target.classList.add("visible");
}
});
}, {
threshold:0.1
});
sections.forEach((section) => {
observer.observe(section);
});
</script>
</body>
</html>