-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
217 lines (184 loc) · 4.44 KB
/
terms.html
File metadata and controls
217 lines (184 loc) · 4.44 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
213
214
215
216
217
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Terms & Conditions - Pravin Mishra</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body {
background: #111827;
color: #f3f4f6;
}
.container {
min-height: 100vh;
padding: 40px 20px;
}
.content {
max-width: 800px;
margin: auto;
animation: fadeUp 1s ease;
}
h1 {
text-align: center;
font-size: 42px;
color: #60a5fa;
margin-bottom: 20px;
}
h2 {
font-size: 24px;
color: #60a5fa;
margin-bottom: 10px;
}
p {
color: #d1d5db;
line-height: 1.7;
margin-bottom: 10px;
}
section {
margin-bottom: 25px;
}
ul {
margin-left: 20px;
color: #d1d5db;
}
li {
margin-bottom: 8px;
line-height: 1.6;
}
a {
color: #60a5fa;
text-decoration: underline;
}
a:hover {
color: #93c5fd;
}
.updated {
margin-bottom: 25px;
}
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(25px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 600px) {
h1 {
font-size: 32px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<h1>Terms & Conditions</h1>
<p class="updated"><strong>Last Updated:</strong> November 2025</p>
<section>
<h2>1. Agreement to Terms</h2>
<p>
By accessing and using this website and services provided by Pravin Mishra, you agree to be bound by these Terms and Conditions.
</p>
</section>
<section>
<h2>2. Use License</h2>
<p>Permission is granted for personal, non-commercial viewing only. You may not:</p>
<ul>
<li>Modify or copy materials</li>
<li>Use materials for commercial purposes</li>
<li>Reverse engineer any software</li>
<li>Remove copyright notices</li>
<li>Mirror content on another server</li>
<li>Violate laws or regulations</li>
</ul>
</section>
<section>
<h2>3. Disclaimer</h2>
<p>
All materials are provided "as is" without warranties of any kind.
</p>
</section>
<section>
<h2>4. Limitations</h2>
<p>
Pravin Mishra shall not be liable for damages arising from the use of the website.
</p>
</section>
<section>
<h2>5. Accuracy of Materials</h2>
<p>
Content may contain errors and may be updated without notice.
</p>
</section>
<section>
<h2>6. Links</h2>
<p>
We are not responsible for external website content.
</p>
</section>
<section>
<h2>7. Modifications</h2>
<p>
Terms may be updated at any time.
</p>
</section>
<section>
<h2>8. Governing Law</h2>
<p>
These terms are governed by the laws of Finland.
</p>
</section>
<section>
<h2>9. Intellectual Property</h2>
<p>
All content is protected by copyright laws.
</p>
</section>
<section>
<h2>10. User Responsibilities</h2>
<ul>
<li>No harassment or abuse</li>
<li>No offensive content</li>
<li>No system abuse</li>
<li>No unauthorized access</li>
</ul>
</section>
<section>
<h2>11. Service Availability</h2>
<p>
Services may be changed or suspended at any time.
</p>
</section>
<section>
<h2>12. Payment Terms</h2>
<p>
Fees must be paid as agreed for paid services.
</p>
</section>
<section>
<h2>13. Limitation of Liability</h2>
<p>
We are not responsible for indirect or consequential damages.
</p>
</section>
<section>
<h2>14. Contact Information</h2>
<p>
Pravin Mishra<br />
Email: <a href="mailto:hello@pravinmishra.com">hello@pravinmishra.com</a><br />
Address: Helsinki, 00100, Finland
</p>
</section>
</div>
</div>
</body>
</html>