-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
114 lines (103 loc) · 4.28 KB
/
privacy.html
File metadata and controls
114 lines (103 loc) · 4.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Gold Value</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.logo {
text-align: center;
padding: 20px 0;
}
.logo h1 {
color: #d4af37;
margin: 0;
font-size: 2em;
}
.privacy-content {
margin: 40px auto;
}
.privacy-content h2 {
color: #333;
margin-bottom: 30px;
text-align: center;
font-size: 2em;
}
.privacy-content h3 {
color: #444;
margin: 25px 0 15px;
font-size: 1.4em;
}
.privacy-content p {
margin-bottom: 15px;
line-height: 1.6;
color: #555;
}
.privacy-content a {
color: #d4af37;
text-decoration: none;
}
.privacy-content a:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 20px;
color: #666;
margin-top: 40px;
}
@media (max-width: 768px) {
.container {
padding: 15px;
}
.privacy-content h2 {
font-size: 1.8em;
}
.privacy-content h3 {
font-size: 1.2em;
}
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<h1>Gold Value</h1>
</div>
<div class="privacy-content">
<h2>Privacy Policy</h2>
<p>Gold Value is developed and published by V App Hive as a free app. This SERVICE is provided by Gold Value at no cost and is intended for use as is.</p>
<p>This page is used to inform users regarding our policies with the collection, use, and disclosure of personal information if anyone decides to use our Service.</p>
<h3>Information Collection and Use</h3>
<p>Gold Value does not collect any personally identifiable information from users. The app does not require registration, login, or access to personal data.</p>
<h3>Log Data</h3>
<p>In case of an error in the app, we may collect data and information (through third-party products) on your device called Log Data. This may include your device's IP address, device name, operating system version, app configuration, the time and date of your use of the Service, and other statistics. This data is collected only for diagnostics and improving the app's performance.</p>
<h3>Cookies</h3>
<p>Gold Value does not use cookies explicitly. However, the app may include third-party libraries that use cookies to collect information and improve their services.</p>
<h3>Service Providers</h3>
<p>We do not employ third-party companies or individuals to collect or process personal data on our behalf.</p>
<h3>Children's Privacy</h3>
<p>Gold Value is not intended for use by anyone under the age of 13. We do not knowingly collect personally identifiable information from children under 13. If we become aware that a child under 13 has provided us with personal information, we will immediately delete such information from our systems.</p>
<h3>Changes to This Privacy Policy</h3>
<p>We may update our Privacy Policy from time to time. You are advised to review this page periodically for any changes. We will notify users of any updates by posting the new Privacy Policy on this page.</p>
<h3>Contact Us</h3>
<p>If you have any questions or suggestions about our Privacy Policy, do not hesitate to contact us at: <a href="mailto:vappshive@gmail.com">vappshive@gmail.com</a></p>
</div>
<footer>
<p>© 2025 V App Hive. All rights reserved.</p>
</footer>
</div>
</body>
</html>