74 lines
2.4 KiB
HTML
74 lines
2.4 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 of Service</title>
|
|
<link rel="stylesheet" href="<?= base_url('styles.css') ?>" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<img
|
|
src="<?= base_url('/images/logo.png') ?>"
|
|
alt="School Logo"
|
|
class="logo"
|
|
/>
|
|
</header>
|
|
<main>
|
|
<div class="container">
|
|
<h1>Terms of Service</h1>
|
|
<p>
|
|
Welcome to our Terms of Service page. Please read these terms
|
|
carefully before using our services.
|
|
</p>
|
|
<h2>Acceptance of Terms</h2>
|
|
<p>
|
|
By using our services, you agree to comply with and be bound by these
|
|
Terms of Service.
|
|
</p>
|
|
<h2>Changes to Terms</h2>
|
|
<p>
|
|
We reserve the right to modify these terms at any time. Any changes
|
|
will be effective immediately upon posting.
|
|
</p>
|
|
<h2>User Responsibilities</h2>
|
|
<p>
|
|
As a user, you agree to use our services in a lawful and respectful
|
|
manner.
|
|
</p>
|
|
<h2>Account Termination</h2>
|
|
<p>
|
|
We may terminate your access to our services if you violate these
|
|
terms or engage in prohibited activities.
|
|
</p>
|
|
<h2>Contact Us</h2>
|
|
<p>
|
|
If you have any questions about these Terms of Service, please contact
|
|
us at alrahma.isgl@gmail.com.
|
|
</p>
|
|
</div>
|
|
</main>
|
|
<footer class="footer mt-auto">
|
|
<div class="row">
|
|
<div class="col-md-4 contact-info">
|
|
<p>5 Courthouse Lane, Chelmsford, MA 01824</p>
|
|
<p>alrahma.isgl@gmail.com</p>
|
|
<p>+1 978-364-0219</p>
|
|
</div>
|
|
<div class="col-md-4 social-media">
|
|
<a href="#"><img src="path_to_facebook_icon.png" alt="Facebook" /></a>
|
|
<a href="#"><img src="path_to_twitter_icon.png" alt="Twitter" /></a>
|
|
<a href="#"
|
|
><img src="path_to_instagram_icon.png" alt="Instagram"
|
|
/></a>
|
|
</div>
|
|
<div class="col-md-4 quick-access">
|
|
<a href="<?= base_url('/privacy-policy'); ?>">Privacy Policy</a>
|
|
<a href="<?= base_url('/terms-of-service'); ?>">Terms of Service</a>
|
|
<a href="<?= base_url('/help-center'); ?>">Help Center</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|