42 lines
1.5 KiB
HTML
42 lines
1.5 KiB
HTML
<!DOCTYPE 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>
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
margin: 0;
|
|
padding: 20px;
|
|
background-color: #f4f4f4;
|
|
color: #333;
|
|
}
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
background: white;
|
|
padding: 20px;
|
|
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
|
}
|
|
h1, h2, p {
|
|
margin: 0 0 20px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Terms and Conditions</h1>
|
|
<p>By using this website, you agree to the following terms and conditions:</p>
|
|
<h2>Use of Map Data</h2>
|
|
<p>You may download KML files or other map data provided through this website solely for personal use. You may not use or distribute this data for any commercial purposes or redistribute it in any form without prior written consent from Inovin LLC.</p>
|
|
<h2>Ownership</h2>
|
|
<p>All map data and related content are the property of Inovin LLC. Unauthorized use or distribution of this content is strictly prohibited.</p>
|
|
<h2>Contact Information</h2>
|
|
<p>If you have any questions or require further information, please contact us at <a href="mailto:danlaforce3@gmail.com">danlaforce3@gmail.com</a>.</p>
|
|
<p>© 2024 Inovin LLC. All rights reserved.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|