-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
91 lines (81 loc) · 4.01 KB
/
Copy pathterms.html
File metadata and controls
91 lines (81 loc) · 4.01 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Terms and Disclaimer - Bharat Ipsum" />
<title>Terms & Disclaimer - Bharat Ipsum</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-white text-gray-800 font-sans flex flex-col min-h-screen">
<!-- Header -->
<header class="bg-gradient-to-r from-orange-500 to-red-500 text-white py-8 text-center">
<h1 class="text-4xl font-bold">Terms & Disclaimer</h1>
<p class="text-lg mt-2">Please read this page carefully before using Bharat Ipsum.</p>
</header>
<!-- Main Content -->
<main class="flex-grow container mx-auto px-4 py-10 max-w-4xl">
<section class="space-y-8 text-lg leading-relaxed">
<div>
<h2 class="text-2xl font-semibold text-orange-600 mb-2">1. Introduction</h2>
<p>
Welcome to <strong>Bharat Ipsum</strong>. This website is a creative tool designed to generate culturally inspired placeholder text for design and development purposes.
By using Bharat Ipsum, you agree that the content provided is purely fictional and meant for creative use only.
</p>
</div>
<div>
<h2 class="text-2xl font-semibold text-orange-600 mb-2">2. Not Affiliated with Government</h2>
<p>
Bharat Ipsum is <strong>not affiliated with, endorsed by, or representing any government or official authority</strong>.
The words, names, or references generated on this website are <strong>fictional and randomly generated</strong>.
They are not meant to represent real entities, events, or individuals.
</p>
</div>
<div>
<h2 class="text-2xl font-semibold text-orange-600 mb-2">3. Content Usage</h2>
<p>
All generated content is intended solely for <strong>placeholder or mockup purposes</strong>.
Bharat Ipsum does not guarantee that any word or term used is free from cultural or contextual interpretations.
Users are responsible for reviewing generated content before using it in projects.
</p>
</div>
<div>
<h2 class="text-2xl font-semibold text-orange-600 mb-2">4. Privacy Policy</h2>
<p>
Bharat Ipsum does <strong>not collect any personal data</strong> from visitors.
No cookies, tracking, or analytics scripts are used apart from <strong>Google Analytics</strong> (if enabled) for anonymous traffic analysis.
</p>
</div>
<div>
<h2 class="text-2xl font-semibold text-orange-600 mb-2">5. Limitation of Liability</h2>
<p>
Bharat Ipsum and its creators shall <strong>not be liable for any damages, losses, or misuse</strong> of content generated by the tool.
The website and its content are provided on an <strong>"as is"</strong> basis without any warranties, express or implied.
</p>
</div>
<div>
<h2 class="text-2xl font-semibold text-orange-600 mb-2">6. Copyright Notice</h2>
<p>
The Bharat Ipsum concept, design, and branding are copyright © <strong>2025 Bharat Ipsum</strong>.
The content and generated placeholder text are free to use for personal or commercial projects, but the brand name
<strong>"Bharat Ipsum"</strong> may not be used without attribution.
</p>
</div>
<div>
<h2 class="text-2xl font-semibold text-orange-600 mb-2">7. Contact Us</h2>
<p>
If you have any questions or concerns, you can reach out at:
<a href="mailto:contact@bharatipsum.com" class="text-orange-500 hover:underline">contact@bharatipsum.com</a>
</p>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-400 text-center py-6">
<p>Made with pride in India | Bharat Ipsum © 2025</p>
<p class="text-xs mt-2">
<a href="index.html" class="underline hover:text-white">Back to Home</a>
</p>
</footer>
</body>
</html>