conextra
Version:
Conextra for Web Development. Helps create a SPWA (Single-page Progressive Web Application).
66 lines (62 loc) • 1.77 kB
HTML
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Terms and Conditions</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>Terms and Conditions</h1>
</header>
<main>
<section>
<h2>Introduction</h2>
<p>
Welcome to our website. Please read these terms and conditions carefully before using our services.
</p>
</section>
<section>
<h2>Use of the Website</h2>
<p>
By accessing this website, you agree to comply with these terms and conditions. Unauthorized use may result in legal action.
</p>
</section>
<section>
<h2>Changes to Terms</h2>
<p>
We reserve the right to modify these terms at any time. Please review this page periodically for updates.
</p>
</section>
</main>
<footer>
<p>© 2023 Your Company. All rights reserved.</p>
</footer>
</body>
</html>