-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
76 lines (63 loc) · 4.23 KB
/
Copy pathprivacy.html
File metadata and controls
76 lines (63 loc) · 4.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Privacy Policy - The Storyteller's House</title>
<meta name="description" content="Privacy Policy for The Storyteller's House children's podcast.">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body class="fade-in">
<nav class="navbar">
<div class="logo">
<a href="index.html">The Storyteller's House</a>
</div>
<div class="menu-toggle" onclick="document.querySelector('.nav-links').classList.toggle('active')">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="stories.html">Stories</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main class="container">
<section class="privacy">
<h1>Privacy Policy</h1>
<p><strong>Last updated:</strong> January 1, 2025</p>
<p>The Storyteller's House respects your privacy and is committed to being transparent about the information we do—and do not—collect. This policy outlines how we handle personal data when you interact with our website.</p>
<h2>Information We Collect</h2>
<p>We do not collect or store personal data when you browse this website. The only personal information we receive is what you choose to share with us directly through email or other messages.</p>
<h2>Email Communications</h2>
<p>If you send us an email, we will use the information you provide solely to respond to your message. We retain your email address and the contents of the conversation only for as long as the communication remains active. Once the conversation ends, we delete the correspondence and any personal details it contains.</p>
<h2>Cookies and Tracking</h2>
<p>We do not use cookies, analytics scripts, or any other tracking technologies on this website.</p>
<h2>Third-Party Services</h2>
<p>We do not share personal information with third parties, and we do not use external analytics or advertising services. Our web hosting provider may collect standard technical logs (such as IP addresses) required for security and maintenance, but we do not access or store that information.</p>
<h2>Data Security</h2>
<p>We take reasonable steps to protect any personal information you share with us from unauthorized access, disclosure, alteration, or destruction.</p>
<h2>Children's Privacy</h2>
<p>The Storyteller's House is designed for audiences of all ages. We encourage parents and guardians to supervise children's use of the internet and to contact us if they believe a child has provided personal information without consent so we can remove it.</p>
<h2>Changes to This Policy</h2>
<p>We may update this privacy policy from time to time to reflect changes to our practices or for other operational, legal, or regulatory reasons. When we make changes, we will update the "Last updated" date at the top of this page.</p>
<h2>Contact Us</h2>
<p>If you have any questions about this policy or how we handle your information, please reach out via our <a href="contact.html">Contact</a> page.</p>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-social">
<a href="https://open.spotify.com/show/1oAARsbfiX9gPGiWvpSNmr?si=0d504d5ff92143af" target="_blank" rel="noopener" title="Spotify"><i class="fab fa-spotify"></i></a>
<a href="https://www.youtube.com/channel/UCnk8NejTDyMqCywfLz0bTQw" target="_blank" rel="noopener" title="YouTube"><i class="fab fa-youtube"></i></a>
<a href="https://bsky.app/profile/storytellershouse.bsky.social" target="_blank" rel="noopener" title="Bluesky"><i class="fas fa-cloud"></i></a>
</div>
<p>© 2025 The Storyteller's House. All rights reserved. | <a href="privacy.html">Privacy Policy</a></p>
</div>
</footer>
</body>
</html>