-
Notifications
You must be signed in to change notification settings - Fork 1
/
TermsAndConditions.php
82 lines (82 loc) · 2.31 KB
/
TermsAndConditions.php
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
<!DOCTYPE html>
<html>
<head>
<title>TermsAndConditions</title>
<style>
body{
color: white;
background-color: black;
margin-left: 15%;
margin-right: 15%;
padding: 1%;
}
ul{
margin: 1%;
}
li{
margin: 0.5%;
}
#img{
width: 95%;
margin: 0.5%;
padding: 0.5%;
}
.signup{
color: white;
background-color: #0c82e2;
width: 9%;
height: 40px;
border-radius: 20px;
font-size: medium;
border: 2px solid #0c82e2;
}
.signup:hover{
background-color: #0c82e2;
opacity: 0.9;
}
@media only screen and (max-width: 1081px) {
body{
margin: 1%;
margin-top: 6%;
}
ul{
font-size: 150%;
padding: 2.4%;
}
h1{
font-size: 400%;
margin-bottom:5%;
}
#img{
width: 90%;
padding-top: 5%;
padding-bottom:5%;
}
h2{
font-size: 300%;
margin-top: 4%;
margin-bottom: 5%;
}
.signup{
width: 14%;
height: 50px;
font-size: 170%;
}
}
</style>
</head>
<body>
<h1 style="text-align: center;"> <i> Welcome to Triton. </i> </h1>
<img id="img" src="css/images/cover.png" alt="Cover Photo" >
<div>
<h2 style="text-align: center;"> Terms & Condition </h2>
<ul >
<li>Triton does not share your personal information with other individuals or organizations including public organizations, corporations or individuals </li>
<li>All of your data is encrypted as Triton heavely focuses on your privacy and security. </li>
<li>Triton have the right to delete your account if you share any controversial or polarizing posts or any illegal activity with/on this website. </li>
<li>Triton uses cookes to improve experience.</li>
</ul>
<div style="text-align: center;"> <button href="#" class="signup">Accept</button> </div>
</div>
</body>
</html>