-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
77 lines (68 loc) · 2.31 KB
/
privacy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.1/html2pdf.bundle.min.js"></script>
<title>Privacy Statement</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #ffffff;
color: rgb(0, 0, 0);
text-align: center;
line-height: 1.6;
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}
h2 {
font-size: 2rem;
margin-top: 40px;
margin-bottom: 15px;
}
h3 {
font-size: 1.5rem;
margin-top: 30px;
margin-bottom: 10px;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px;
}
.contact {
margin-top: 30px;
text-decoration: none; font-size: small; color: inherit;
font-size: 1.2rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Statement</h1>
<p>Welcome to our website. We would like to inform you about our approach to privacy and data protection.</p>
<h3>Website Hosting and Backend Systems</h3>
<p>This website is not hosted by Hypersoftware Group and does not utilize any backend systems that would trace or collect user data.</p>
<p>We do not employ tracking mechanisms, cookies, or any other means to monitor or gather personal information about users visiting this website.</p>
<h3>Data Collection</h3>
<p>We want to reassure you that we do not collect any personal or sensitive data from users who access this website.</p>
<h3>Contact</h3>
<p>If you have any questions or concerns about this privacy statement, you can contact us at:</p>
<p class="contact">hypersoftwaregroup@proton.me</a></p>
<p>Owners And Developers 'Snow, Xeros'</p>
<a href="javascript:void(0);" id="downloadPdf">Download as PDF</a>
</p>
</div>
<script>
const downloadPdfLink = document.getElementById('downloadPdf');
downloadPdfLink.addEventListener('click', () => {
const htmlContent = document.documentElement.outerHTML;
html2pdf().from(htmlContent).save('Software_Usage_Agreement.pdf');
});
</script>
</body>
</html>