-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
50 lines (50 loc) · 1.16 KB
/
Copy pathterms.html
File metadata and controls
50 lines (50 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<title>Terms of Service</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
h1 {
color: #333;
text-align: center;
padding: 20px 0;
}
p {
color: #666;
line-height: 1.6;
margin: 0 20px 20px;
}
a {
display: block;
text-align: center;
background-color: #4caf50;
color: white;
padding: 10px 0;
margin: 20px;
text-decoration: none;
}
a:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<h1>Terms of Service</h1>
<p>
Rule 1: By accessing this website, you agree that your IP address, session
information, and device information will be recorded for security
purposes. Filling the database with spam or any form of abusive behavior
will result in a ban.
</p>
<p>
Rule 2: The creator of this website is not responsible for the data in the
database.
</p>
<a href="index.html">Back to homepage</a>
</body>
</html>