-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
149 lines (124 loc) · 5.83 KB
/
Copy pathindex.html
File metadata and controls
149 lines (124 loc) · 5.83 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
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
<!DOCTYPE html>
<html lang="my">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - ကျွဲဂိမ်း</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Myanmar:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<style>
body {
font-family: 'Noto Sans Myanmar', sans-serif;
background-color: #020617;
color: #cbd5e1;
margin: 0;
line-height: 1.6;
}
/* --- Header --- */
.header-bar {
position: fixed;
top: 0;
width: 100%;
background: #0f172a;
height: 60px;
display: flex;
align-items: center;
padding: 0 15px;
border-bottom: 2px solid #fbbf24;
z-index: 1000;
}
.back-icon {
font-size: 22px;
color: #fbbf24;
text-decoration: none;
margin-right: 15px;
}
.header-title {
color: #fbbf24;
font-weight: bold;
font-size: 1.1rem;
}
/* --- Content Container --- */
.content-area {
padding: 80px 20px 40px;
max-width: 800px;
margin: 0 auto;
}
h1, h2, h3 {
color: #fbbf24;
margin-top: 25px;
margin-bottom: 10px;
}
h1 { font-size: 1.8rem; border-bottom: 1px solid rgba(251, 191, 36, 0.3); padding-bottom: 10px; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.1rem; }
p { margin-bottom: 15px; font-size: 0.95rem; }
ul {
margin-bottom: 15px;
padding-left: 20px;
list-style-type: disc;
}
li { margin-bottom: 8px; font-size: 0.9rem; }
.contact-box {
background: #0f172a;
padding: 20px;
border-radius: 15px;
border: 1px solid rgba(251, 191, 36, 0.3);
margin-top: 30px;
}
.email-link {
color: #fbbf24;
text-decoration: underline;
}
</style>
</head>
<body>
<header class="header-bar">
<a href="main.html" class="back-icon">
<i class="fa-solid fa-chevron-left"></i>
</a>
<div class="header-title">Privacy Policy</div>
</header>
<main class="content-area">
<h1>Privacy Policy for ကျွဲဂိမ်း</h1>
<p>Last updated: March 27, 2026</p>
<p>This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.</p>
<p>We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accordance with this Privacy Policy.</p>
<h2>Interpretation and Definitions</h2>
<h3>Interpretation</h3>
<p>The words whose initial letters are capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural.</p>
<h3>Definitions</h3>
<ul>
<li><strong>Account:</strong> A unique account created for You to access our Service.</li>
<li><strong>Application:</strong> refers to ကျွဲဂိမ်း, the software program provided by the Company.</li>
<li><strong>Company:</strong> refers to ကျွဲဂိမ်း (Myanmar).</li>
<li><strong>Personal Data:</strong> any information that relates to an identified or identifiable individual.</li>
<li><strong>Service:</strong> refers to the Application.</li>
<li><strong>Usage Data:</strong> refers to data collected automatically (e.g. the duration of a page visit).</li>
</ul>
<h2>Collecting and Using Your Personal Data</h2>
<h3>Types of Data Collected</h3>
<p>While using Our Service, We may ask You to provide Us with certain personally identifiable information that can be used to contact or identify You (Personal Data).</p>
<h3>Usage Data</h3>
<p>Usage Data is collected automatically when using the Service. This may include IP address, browser type, device unique ID, and diagnostic data.</p>
<h2>Use of Your Personal Data</h2>
<p>The Company may use Personal Data for the following purposes:</p>
<ul>
<li>To provide and maintain our Service.</li>
<li>To manage Your Account and registration.</li>
<li>To contact You regarding updates or security notifications.</li>
<li>To provide news and special offers.</li>
</ul>
<h2>Security of Your Personal Data</h2>
<p>The security of Your Personal Data is important to Us, but remember that no method of transmission over the Internet is 100% secure. While We strive to use commercially acceptable means to protect Your Personal Data, We cannot guarantee its absolute security.</p>
<h2>Children's Privacy</h2>
<p>Our Service does not address anyone under the age of 13. We do not knowingly collect personally identifiable information from anyone under the age of 13.</p>
<div class="contact-box">
<h2>Contact Us</h2>
<p>If you have any questions about this Privacy Policy, You can contact us:</p>
<p><i class="fa-solid fa-envelope mr-2"></i> By email: <a href="mailto:yangontv.project@gmail.com" class="email-link">yangontv.project@gmail.com</a></p>
</div>
</main>
</body>
</html>