-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTerm.html
75 lines (63 loc) · 2.43 KB
/
Term.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms & Conditions - LoopCodeIn</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 40px;
background-color: #f9f9f9;
color: #333;
line-height: 1.7;
}
h1 {
color: #2c3e50;
text-align: center;
}
h2 {
color: #34495e;
margin-top: 30px;
}
p {
margin-bottom: 20px;
}
footer {
margin-top: 50px;
text-align: center;
font-size: 14px;
color: #777;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Terms & Conditions</h1>
<p><strong>Last updated:</strong> 27/04/2025</p>
<p>Welcome to <strong>LoopCode</strong>!</p>
<p>By accessing this website (<a href="https://loopcodein.netlify.app" target="_blank">https://loopcodein.netlify.app</a>), you agree to be bound by these Terms and Conditions. If you do not agree with all the Terms, please do not use our Website.</p>
<h2>1. Use of Website</h2>
<p>The content on this website is for your general information and use only. It is subject to change without notice.</p>
<p>Unauthorized use of this website may give rise to a claim for damages and/or be a criminal offense.</p>
<h2>2. Intellectual Property</h2>
<p>All content, trademarks, and data on this website are owned by or licensed to LoopCodeIn. Unauthorized reproduction is prohibited.</p>
<h2>3. User Responsibilities</h2>
<p>You must not misuse this Website by knowingly introducing viruses, trojans, worms, or any other material that is malicious or technologically harmful.</p>
<h2>4. External Links</h2>
<p>This Website may include links to other websites for your convenience. These links do not signify that we endorse such website(s) and we have no responsibility for their content.</p>
<h2>5. Limitation of Liability</h2>
<p>We are not liable for any loss or damage, including indirect or consequential loss or damage, arising from your use of this Website.</p>
<h2>6. Changes to Terms</h2>
<p>LoopCodeIn may revise these Terms at any time without notice. Please review this page regularly to ensure you are aware of any changes.</p>
<footer>
© 2025 LoopCodeIn. All rights reserved.
</footer>
</body>
</html>