-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
59 lines (57 loc) · 2.96 KB
/
contact.html
File metadata and controls
59 lines (57 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - OSHORead</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap" rel="stylesheet">
<style>
body { font-family: "Geist", sans-serif; }
</style>
</head>
<body class="bg-blue-50 text-gray-800">
<!-- Header -->
<header class="bg-white shadow-sm">
<div class="max-w-7xl mx-auto py-4 px-4 sm:px-6 lg:px-8">
<h1 class="text-2xl font-semibold text-blue-800">OSHORead</h1>
<nav class="mt-2 flex space-x-4">
<a href="index.html" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md">Home</a>
<a href="about.html" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md">About</a>
<a href="privacy-policy.html" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md">Privacy Policy</a>
<a href="contact.html" class="text-blue-600 font-medium px-3 py-2 rounded-md bg-blue-100">Contact</a>
</nav>
</div>
</header>
<!-- Main Content -->
<main class="max-w-3xl mx-auto py-8 px-4 sm:px-6 lg:px-8">
<section class="bg-white rounded-lg shadow-sm p-6">
<h2 class="text-3xl font-semibold text-blue-800 mb-4">Contact Us</h2>
<p class="mb-4 text-gray-700">
Got feedback, questions, or concerns about OSHORead? Reach out to us through the following channels:
</p>
<ul class="list-disc pl-6 mb-4 text-gray-700">
<li>Email: <a href="mailto:krishvishwakarma83@gmail.com" class="text-blue-600 hover:underline">krishvishwakarma83@gmail.com</a></li>
<li>Reddit: <a href="https://reddit.com/u/Alternative-Way9653" class="text-blue-600 hover:underline">u/Alternative-Way9653</a></li>
<li>Discord: <a href="https://discord.gg/EnQA8eRsbw" class="text-blue-600 hover:underline">Join our community</a></li>
</ul>
<p class="text-gray-700">
OSHORead is a non-profit project by <strong>Extreme_Krish</strong>. If you represent the content owners, please contact us to discuss any concerns, and we’ll address them promptly.
</p>
</section>
</main>
<!-- Footer -->
<footer class="bg-white shadow-sm mt-8 py-4">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center text-gray-600">
<p>OSHORead. Developed by Extreme_Krish. Non-profit project.</p>
<p class="mt-1">
<a href="mailto:krishvishwakarma83@gmail.com" class="text-blue-600 hover:underline">krishvishwakarma83@gmail.com</a> |
<a href="https://reddit.com/u/Alternative-Way9653" class="text-blue-600 hover:underline">u/Alternative-Way9653</a> |
<a href="https://discord.gg/EnQA8eRsbw" class="text-blue-600 hover:underline">Discord</a>
</p>
</div>
</footer>
</body>
</html>