forked from Nameh-Dhiman/Apple-TV-Clone-Project.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
49 lines (49 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./Styles/pages.css" />
<title>Privacy</title>
</head>
<body>
<main>
<div class="container" id="privacy-container">
<div class="apple-tv_logo">
<img src="./Images/TV App Logo.png" alt="appletv" />
</div>
<p class="privacy-info">Apple TV & Privacy</p>
<img
src="https://tv.apple.com/static-commerce/img/privacy-dark.4d6bfee7.svg"
alt=""
/>
<div class="privacy-desc">
<p class="desc-text">
Your playback, searches, purchases, and device trust score are used
to personalize your experience, improve that of others, and prevent
fraud.
</p>
<a
href="https://www.apple.com/legal/privacy/data/en/apple-tv-app/"
target="_blank"
>See how your data is managed...</a
>
</div>
<div class="privacy-desc">
<p class="desc-text">
With your new Apple ID, you will be able to sign in to available
services. Apple records certain usage data for security, support,
and reporting purposes.
</p>
<a href="https://support.apple.com/en-us/HT208512" target="_blank"
>See how your data is managed...</a
>
</div>
<button id="privacy-agree">
<a href="./signin-form.html">Continue</a>
</button>
</div>
</main>
</body>
</html>