-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
137 lines (120 loc) · 5.8 KB
/
Copy pathterms.html
File metadata and controls
137 lines (120 loc) · 5.8 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service - JobHub</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<a href="index.html" class="logo">
Jobby<span class="logo-dot">.</span>
</a>
<button class="menu-btn" id="menuBtn">☰</button>
<ul class="menu" id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="search.html">Job Search</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!-- Terms of Service Content -->
<div class="policy-page">
<div class="policy-container">
<h1>Terms of Service</h1>
<h2>1. Acceptance of Terms</h2>
<p>By accessing and using JobHub, you agree to be bound by these Terms of Service. If you do not agree to these terms, please do not use our services.</p>
<h2>2. Description of Service</h2>
<p>JobHub provides an online platform connecting job seekers with employers. We facilitate job postings, applications, and related services but are not a party to any employment agreements.</p>
<h2>3. User Accounts</h2>
<p>You must register for an account to access certain features. You are responsible for maintaining the confidentiality of your account information and for all activities under your account.</p>
<h2>4. User Responsibilities</h2>
<ul>
<li>Provide accurate and complete information</li>
<li>Maintain and update your information</li>
<li>Protect your account credentials</li>
<li>Comply with all applicable laws and regulations</li>
</ul>
<h2>5. Content Guidelines</h2>
<p>Users must not post content that is:</p>
<ul>
<li>False, misleading, or deceptive</li>
<li>Discriminatory or harmful</li>
<li>In violation of intellectual property rights</li>
<li>Spam or unauthorized advertising</li>
</ul>
<h2>6. Intellectual Property</h2>
<p>All content and materials available on JobHub are protected by intellectual property rights. Users may not copy, modify, or distribute our content without permission.</p>
<h2>7. Privacy</h2>
<p>Our collection and use of personal information is governed by our <a href="privacy.html">Privacy Policy</a>.</p>
<h2>8. Termination</h2>
<p>We reserve the right to terminate or suspend accounts that violate these terms or for any other reason at our discretion.</p>
<h2>9. Disclaimers</h2>
<p>JobHub provides its services "as is" and makes no warranties about the accuracy, reliability, or availability of the service.</p>
<h2>10. Limitation of Liability</h2>
<p>JobHub shall not be liable for any indirect, incidental, special, or consequential damages arising from your use of the service.</p>
<h2>11. Changes to Terms</h2>
<p>We may modify these terms at any time. Continued use of the service after changes constitutes acceptance of the new terms.</p>
<h2>12. Contact Information</h2>
<p>For questions about these terms, please contact us at support@jobhub.com.</p>
<div class="policy-date">
Last updated: April 28, 2025
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="footer-container">
<div class="footer-column">
<h3>About Us</h3>
<ul class="footer-links">
<li><a href="about.html">Our Story</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="careers.html">Careers</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Resources</h3>
<ul class="footer-links">
<li><a href="blog.html">Blog</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="support.html">Support</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Contact</h3>
<ul class="footer-links">
<li><a href="contact.html">Contact Us</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="terms.html">Terms of Service</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Follow Us</h3>
<div class="footer-social">
<a href="#" class="social-icon">🔗</a>
<a href="#" class="social-icon">🔗</a>
<a href="#" class="social-icon">🔗</a>
</div>
</div>
</div>
<div class="copyright">
© 2025 JobHub. All rights reserved.
<br>
<p class="cj">CJ_</p>
</div>
</footer>
<script>
const menuBtn = document.getElementById('menuBtn');
const menu = document.getElementById('menu');
menuBtn.addEventListener('click', () => {
menu.classList.toggle('active');
});
</script>
</body>
</html>