-
Notifications
You must be signed in to change notification settings - Fork 0
/
Termofuse.html
77 lines (63 loc) · 2.72 KB
/
Termofuse.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Use</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background: linear-gradient(90deg, rgba(135,252,70,1) 0%,rgba(63,94,251,1) 100%);
}
h1 {
text-align: center;
color: white;
}
h2 {
margin-top: 30px;
color: white;
}
p {
line-height: 1.5;
color: white;
}
ul {
margin-left: 20px;
color:white;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px;
background-color: rgba(0, 0, 0, 0.7);
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
</style>
</head>
<body>
<div class="container">
<h1>Terms of Use</h1>
<h2>1. Introduction</h2>
<p>Welcome to our website. These terms and conditions apply to the use of this website.</p>
<h2>2. Acceptance of Terms</h2>
<p>By accessing or using this website, you agree to be bound by these terms and conditions.</p>
<h2>3. Intellectual Property</h2>
<p>All content on this website, including text, graphics, logos, and images, is the property of the website owner and is protected by intellectual property laws.</p>
<h2>4. User Conduct</h2>
<p>When using this website, you agree to comply with all applicable laws and regulations. You are solely responsible for your actions and the content you submit.</p>
<h2>5. Disclaimer</h2>
<p>This website is provided on an "as is" basis, without any warranties or representations, expressed or implied. We do not guarantee the accuracy, reliability, or availability of the website.</p>
<h2>6. Limitation of Liability</h2>
<p>We shall not be liable for any damages arising out of or in connection with the use of this website. This includes any direct, indirect, incidental, or consequential damages.</p>
<h2>7. Governing Law</h2>
<p>These terms and conditions are governed by and construed in accordance with the laws of [your jurisdiction].</p>
<h2>8. Changes to Terms</h2>
<p>We reserve the right to modify or update these terms and conditions at any time. It is your responsibility to review these terms periodically.</p>
<h2>9. Contact Us</h2>
<p>If you have any questions or concerns about these terms and conditions, please contact us.</p>
</div>
</body>
</html>