Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Site Map Page Fixed #904

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 26 additions & 25 deletions sitemap.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
<!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" />

<head>
<meta charset="UTF-8">
Expand Down Expand Up @@ -169,10 +165,15 @@
bottom: 0;
width: 100%;
}

main ul li:hover{
transform: scale(1.01) translateX(25px);
transition: all 0.3s ease;
}
</style>
</head>
<body>
<header>
<header style="display: flex; justify-content: center; align-items: center; height: 75px;">
<div class="container">

<div class="logo">
Expand All @@ -183,22 +184,22 @@
<img src="images/logo2-w.webp" alt="Ambulance Monitoring System Logo" style="width: 50px; height: auto" />

</div>
<nav class="menu">
<nav style="height: 2rem;" class="menu">
<ul>
<li>
<a href="/" id="home-link" onclick="changeContent('home')"><i class="fa-solid fa-house"></i> Home</a>
<a style="font-size: 1.3rem;" href="/" id="home-link" onclick="changeContent('home')"><i class="fa-solid fa-house"></i> Home</a>
</li>
<li>
<a href="features.html" id="features-link" onclick="changeContent('features')"><i class="fa-solid fa-file"></i> Features</a>
<a style="font-size: 1.3rem;" href="features.html" id="features-link" onclick="changeContent('features')"><i class="fa-solid fa-file"></i> Features</a>
</li>
<li>
<a href="team.html" id="team-link" onclick="changeContent('team')"><i class="fa-solid fa-user-group"></i> Team</a>
<a style="font-size: 1.3rem;" href="team.html" id="team-link" onclick="changeContent('team')"><i class="fa-solid fa-user-group"></i> Team</a>
</li>
<li>
<a href="contact.html" id="contact-link" onclick="changeContent('contact')"><i class="fa-solid fa-phone"></i> Contact</a>
<a style="font-size: 1.3rem;" href="contact.html" id="contact-link" onclick="changeContent('contact')"><i class="fa-solid fa-phone"></i> Contact</a>
</li>
<li>
<a href="Feedback.html" id="feedback-link" onclick="changeContent('feedback')"><i class="fa-solid fa-clipboard"></i> Feedback</a>
<a style="font-size: 1.3rem;" href="Feedback.html" id="feedback-link" onclick="changeContent('feedback')"><i class="fa-solid fa-clipboard"></i> Feedback</a>
</li>
</ul>
</nav>
Expand All @@ -207,32 +208,32 @@
<a href="up.html" class="get-started">Get started</a>
</div>
</div>
<h1>Site Map AmbuFlow</h1>

</header>

<main>
<main style="margin-top: 50px; margin-bottom: 50px; background-color: #b2b2b2;">
<h1 style="place-self: center; color: white; text-shadow: none; font-size: 2.4rem; margin-top: -15px; margin-bottom: 50px;">Site Map AmbuFlow</h1>
<ul>
<li><a href="homepage.html"
>Home</a>
<li><a style="font-weight: 500; color: #10141b;" href="homepage.html" >Home</a>
</li>
<li><a href="about.html">About Us</a>
<li><a style="font-weight: 500; color: #10141b;" href="about.html">About Us</a>
</li>
<li><a href="features.html">Features</a>
<li><a style="font-weight: 500; color: #10141b;" href="features.html">Features</a>
</li>
<li><a href="team.html">Team</a>
<li><a style="font-weight: 500; color: #10141b;" href="team.html">Team</a>
</li>
<li><a href="contact.html">Contact</a>
<li><a style="font-weight: 500; color: #10141b;" href="contact.html">Contact</a>
</li>
<li><a href="Feedback.html">Feedback</a>
<li><a style="font-weight: 500; color: #10141b;" href="Feedback.html">Feedback</a>
</li>
<li><a href="sitemap.html">Sitemap</a>
<li><a style="font-weight: 500; color: #10141b;" href="sitemap.html">Sitemap</a>
</li>
<li><a href="login.html">Log In</a>
<li><a style="font-weight: 500; color: #10141b;" href="login.html">Log In</a>
</li>
<li><a href="up.html">Get Started</a>
<li><a style="font-weight: 500; color: #10141b;" href="up.html">Get Started</a>
</li>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="terms.html">Terms of Service</a></li>
<li><a style="font-weight: 500; color: #10141b;" href="privacy.html">Privacy Policy</a></li>
<li><a style="font-weight: 500; color: #10141b;" href="terms.html">Terms of Service</a></li>
</ul>
</main>

Expand Down