-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
95 lines (65 loc) · 4.02 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="privacy.css">
<link rel="icon" type="image/x-icon" href="svgs/AKlogo.svg">
<title>Privacy Policy</title>
</head>
<body>
<div class="privacyContainer">
<div class="navHeader">
<img src="svgs/AKlogo.svg" alt="logo">
<h1>Privacy Policy</h1>
</div>
<div class="privacyIntro">
<h1>Welcome to AK x Music.</h1>
<h4>Your privacy is important to us. This Privacy Policy
explains how we handle your information when you use our music website.</h4>
</div>
<div class="privacyDescription">
<h2>Information We Collect</h2>
<p>Our website does not collect any personal data or usage information from users. We value your privacy and
ensure that no data is gathered, stored, or shared through our services.</p>
<h2>Access to Local Files</h2>
<p>
To enhance your experience, our website requires access to a specific folder on your device which contain your
playlist and in that playlist your mp3 songs will be present.
</p>
<p>Select <b>only directory folder</b> which contain <b>Playlists.</b>
i.e,<b>"Music/Playlists/...mp3"</b> Choose <b>Music </b>folder only.</p>
<p>Add cover.jpg and info.json for "title" and "description" </p>
<p>If you do not give any image or json file then it will automatically take the default things.</p>
<ul>
<li><b>Example: "Music/Playlists/...mp3"</b></li>
</ul>
<p>Within this directory, you may organize your music as follows:</p>
<ul>
<li>Playlist Folders: "Music/Playlists/...mp3" <b>/Playlists/</b> representing playlists.</li>
<li>MP3 Files: Each playlist folder contains MP3 files.</li>
<li>Playlist Information: Each playlist folder includes a <b>info.json</b> file containing the title and
description of the playlist.</li>
<li>Playlist Cover Image: Each playlist folder includes a <b>cover.jpg</b> image representing the playlist
cover.</li>
</ul>
<h2>Usage of Accessed Files</h2>
<p>The access to your local files is solely for the purpose of organizing and playing your music files.
We do not collect, upload, or share any information about these files.</p>
<h2>Third-Party Services</h2>
<p>Our website does not use any third-party services that collect or process your data.</p>
<h2>Changes to This Privacy Policy</h2>
<p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page with an updated effective date.</p>
<h2>Contact Us</h2>
<p>If you have any questions about this Privacy Policy, please contact us at <a href="contact.html">Contact.</a></p>
<h4> By using our website, you agree to this Privacy Policy. If you do not agree with any part of this policy, please do not use our services.</h4>
<hr>
<h4>This Privacy Policy ensures that your data remains private and secure while using our music website.</h4>
</div>
<div class="foot">
<p>© Atul Kumar</p>
</div>
</div>
</div>
</body>
</html>