forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisclaimer.html
80 lines (78 loc) · 3.76 KB
/
disclaimer.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Disclaimer</title>
<link rel="stylesheet" href="disclaimer.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="terms.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
body>
<header>
<div class="container3">
<nav>
<div class="logo">
<img src="img/logo.png" id="logo-web" alt="BuddyTrail Logo" />
<h1 id="logo">BuddyTrail</h1>
</div>
<button class="hamburger" id="hamburger">☰</button>
<ul class="nav-links" id="nav-links">
<button class="dropdown-close-btn" id="closeBtn">✖</button>
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="about.html" class="nav-link active">About Us</a></li>
<li><a href="team.html" class="nav-link">Team</a></li>
<li><a href="contact.html" class="nav-link">Contact</a></li>
<li><a href="auth.html" class="btn-primary">Sign In</a></li>
</ul>
<button class="mode-toggle" id="modeToggle">
<span class="sun-icon glow"
><img src="day-mode.png" alt="Light mode"
/></span>
<span class="moon-icon glow" style="display: none"
><img src="moon.png" alt="Dark mode"
/></span>
</button>
</nav>
</div>
</header>
</header>
<main class="content-container " style="padding-top: 50px;">
<section class="disclaimer-section">
<h1>Disclaimer</h1>
<p>
The information provided by <strong>BuddyTrial</strong> is for general informational purposes only.
All information on the site is provided in good faith; however, we make no representation or warranty
of any kind, express or implied, regarding the accuracy, adequacy, validity, reliability, availability,
or completeness of any information on the site.
</p>
<p>
Under no circumstance shall we have any liability to you for any loss or damage of any kind incurred as
a result of the use of the site or reliance on any information provided on the site. Your use of the site
and your reliance on any information on the site is solely at your own risk.
</p>
<p>
The site may contain links to other websites or content belonging to or originating from third parties or
links to websites and features in banners or other advertising. Such external links are not investigated,
monitored, or checked for accuracy, adequacy, validity, reliability, availability, or completeness by us.
</p>
<p>
The information on this site does not constitute legal, financial, or professional advice. You should
consult with an appropriate professional before making any decisions.
</p>
<p>
If you have any questions about this Disclaimer, you can contact us via email at
<a href="mailto:info@buddytrial.com">info@buddytrial.com</a>.
</p>
</section>
</main>
<footer>
<p>© 2024 BuddyTrial. All Rights Reserved.</p>
</footer>
</body>
</html>