conextra
Version:
Conextra for Web Development. Helps create a SPWA (Single-page Progressive Web Application).
61 lines (60 loc) • 1.81 kB
HTML
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
header {
background: #0078d7;
color: #fff;
padding: 1rem 0;
text-align: center;
}
main {
padding: 2rem;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 1rem 0;
margin-top: 2rem;
}
</style>
</head>
<body>
<header>
<h1>Privacy Policy</h1>
</header>
<main>
<h2>Introduction</h2>
<p>
Your privacy is important to us. This privacy policy explains how we collect, use, and protect your information.
</p>
<h2>Information We Collect</h2>
<p>
We may collect personal information such as your name, email address, and other details you provide to us.
</p>
<h2>How We Use Your Information</h2>
<p>
The information we collect is used to improve our services, communicate with you, and ensure a better user experience.
</p>
<h2>Contact Us</h2>
<p>
If you have any questions about this privacy policy, please contact us at <a href="mailto:support@example.com">support@example.com</a>.
</p>
</main>
<footer>
<p>© 2023 Your Company. All rights reserved.</p>
</footer>
</body>
</html>