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 Navigation Links From Some Pages #768

Merged
merged 2 commits into from
Jul 6, 2024
Merged
Changes from 1 commit
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
43 changes: 22 additions & 21 deletions Html-Files/news.html
Original file line number Diff line number Diff line change
Expand Up @@ -444,15 +444,15 @@
<nav class="nav_menu">

<ul class="nav_link">
<li><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="Html-Files/news.html">News</a></li>
<a href="dex.html">Service</a>
<li><a href="#patient-portal">Patient Portal</a></li>
<li><a href="#doctors">Doctor</a></li>
<li><a href="Html-Files/contact.html">Contact us</a></li>

<a href="login.html">Sign in/Sign up</a>
<li><a href="/index.html">Home</a></li>
<li><a href="/index.html/#about">About</a></li>
<li><a href="/Html-Files/news.html">News</a></li>
<a href="/dex.html">Service</a>
<li><a href="/index.html#patient-portal">Patient Portal</a></li>
<li><a href="/index.html#doctors">Doctor</a></li>
<li><a href="/Html-Files/contact.html">Contact us</a></li>

<a href="/login.html">Sign in/Sign up</a>
<a href="./Html-Files/Doctor Experience.html"><button>Find a Doctor</button></a>

</ul>
Expand Down Expand Up @@ -632,32 +632,33 @@ <h3>RapiDoc's Research Team Publishes Groundbreaking Study on Preventive Healthc
<section>
<h4>Quick Links</h4><br>
<ul class="links">
<li><a href="./index.html">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="./Html-Files/contact.html">Contact Us</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#doctors">Doctors</a></li>
<li><a href="./faq.html">FAQ</a></li>
<li><a href="/index.html">Home</a></li>
<li><a href="/index.html#about">About Us</a></li>
<li><a href="/Html-Files/contact.html">Contact Us</a></li>
<li><a href="/index.html#services">Services</a></li>
<li><a href="/index.html#doctors">Doctors</a></li>
<li><a href="/faq.html">FAQ</a></li>
</ul>
</section>
<section>
<h4>Explore</h4><br>
<ul class="links">
<li><a href="#">Appointment</a></li>
<li><a href="#">Patient Portal</a></li>
<li><a href="#">Login account</a></li>
<li><a href="/index.html#appointment">Appointment</a></li>
<li><a href="/index.html#patient-portal">Patient Portal</a></li>
<li><a href="/login.html">Login account</a></li>
<li><a href="#">Helplines</a></li>
<li><a href="#">Location</a></li>
<li><a href="/index.html#contact">Location</a></li>
</ul>
</section>
<section>
<h4>Legal</h4><br>
<ul class="links">
<li><a href="#">Customer Agreement</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="/Html-Files/privacy_policy_page.html">Privacy Policy</a></li>
<li><a href="/Html-Files/terms_and_conditions.html">Terms and Conditions</a></li>
<li><a href="#">GDPR</a></li>
<li><a href="#">Security</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="/index.html#test">Testimonials</a></li>
</ul>
</section>
<section class="footer-col">
Expand Down