generated from wanghaisheng/mood-emotion-charts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterms.html
156 lines (126 loc) · 4.68 KB
/
terms.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO Meta Tags -->
<meta name="description" content="Read the terms and conditions for using the mobile simulator.">
<meta name="keywords" content="terms, conditions, mobile, simulator, terms of service">
<meta name="author" content="Your Name or Company">
<meta http-equiv="Content-Language" content="en">
<!-- Canonical Link -->
<link rel="canonical" href="https://www.yourwebsite.com/terms" />
<!-- Open Graph for Social Media -->
<meta property="og:title" content="Terms of Service">
<meta property="og:description" content="Read the terms and conditions for using the mobile simulator.">
<meta property="og:image" content="https://www.yourwebsite.com/terms-image.jpg">
<meta property="og:url" content="https://www.yourwebsite.com/terms">
<meta property="og:type" content="website">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Terms of Service">
<meta name="twitter:description" content="Read the terms and conditions for using the mobile simulator.">
<meta name="twitter:image" content="https://www.yourwebsite.com/terms-image.jpg">
<meta name="twitter:creator" content="@yourtwitterhandle">
<!-- Favicon -->
<link rel="icon" href="https://www.yourwebsite.com/favicon.ico" type="image/x-icon">
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXXX-Y"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-XXXXX-Y');
</script>
<!-- Microsoft Clarity -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y) {
window.clarity=window.clarity||function(){(clarity.q=clarity.q||[]).push(arguments)};
clarity('set', 'anonymizeIP', true);
i=l.createElement('script');i.async=1;i.src=r;i.type='text/javascript';
t=l.getElementsByTagName('script')[0];t.parentNode.insertBefore(i,t);
})(document,window,'script','https://www.clarity.ms/tag/XXXXXX');
</script>
<title>Terms of Service</title>
<style>
/* Global Styles */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: flex-start;
padding: 20px;
height: auto;
text-align: left;
}
.terms-container {
width: 100%;
max-width: 800px;
background-color: #fff;
border-radius: 10px;
padding: 20px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 2rem;
color: #333;
margin-bottom: 20px;
}
p {
font-size: 1.1rem;
line-height: 1.6;
color: #555;
margin-bottom: 15px;
}
/* Adjustments for Mobile and PC */
@media (min-width: 768px) {
body {
padding: 40px;
}
.terms-container {
padding: 40px;
}
h1 {
font-size: 2.5rem;
}
p {
font-size: 1.2rem;
}
}
@media (min-width: 1024px) {
.terms-container {
max-width: 1000px;
}
h1 {
font-size: 3rem;
}
p {
font-size: 1.3rem;
}
}
</style>
</head>
<body>
<div class="terms-container">
<h1>Terms of Service</h1>
<p><strong>Effective Date:</strong> January 1, 2024</p>
<h2>1. Introduction</h2>
<p>Welcome to our Mobile Simulator. By using our service, you agree to abide by the following terms and conditions...</p>
<h2>2. Use of Service</h2>
<p>Users must comply with all applicable laws when using our service. Unauthorized use or abuse of our service may result in penalties...</p>
<h2>3. Privacy Policy</h2>
<p>We respect your privacy and are committed to protecting your personal information. For more details, please refer to our Privacy Policy...</p>
<h2>4. User Responsibilities</h2>
<p>You are responsible for your actions while using our service. You agree not to engage in any activity that may harm the platform...</p>
<h2>5. Limitation of Liability</h2>
<p>We are not responsible for any damages or losses resulting from the use of our service. By continuing to use the service, you accept these terms...</p>
<h2>6. Changes to the Terms</h2>
<p>We may update these terms from time to time. Any changes will be posted on this page, and the updated terms will be effective immediately...</p>
<p>If you have any questions regarding these terms, feel free to contact us at support@yourwebsite.com.</p>
</div>
</body>
</html>