-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added footer and fixed the navbar of RateUs Page (#736)
Co-authored-by: Vamshi Maskuri <[email protected]>
- Loading branch information
1 parent
e518811
commit 11deca7
Showing
2 changed files
with
309 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
<link rel="stylesheet" href="rateus.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.8.1/font/bootstrap-icons.min.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css"> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<header class="header_container"> | ||
|
@@ -43,7 +44,85 @@ <h2>Rate Us</h2> | |
<textarea id="comment" placeholder="Give Us Your Feedback :)"></textarea> | ||
<button onclick="submitRating()">Submit</button> | ||
</div> | ||
|
||
<br><br> | ||
<footer> | ||
<div class="footer-wrapper"> | ||
<div class="footer-columns"> | ||
<div class="other-columns"> | ||
<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> | ||
</ul> | ||
</section> | ||
<section> | ||
<h4>Explore</h4><br> | ||
<ul class="links"> | ||
<li><a href="Html-Files/appointment.html">Appointment</a></li> | ||
<li><a href="#">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> | ||
</ul> | ||
</section> | ||
<section> | ||
<h4>Legal</h4><br> | ||
<ul class="links"> | ||
<li><a href="Html-Files/customer_agreement.html">Customer Agreement</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="#test">Testimonials</a></li> | ||
</ul> | ||
</section> | ||
<section class="footer-col"> | ||
<h4>RAPIDOC Newsletter</h4><br> | ||
<p> | ||
Subscribe to our newsletter for a weekly dose | ||
of news, updates, helpful tips, and | ||
exclusive offers. | ||
</p> | ||
<form action="#" class="subscribe-form"> | ||
<input type="email" placeholder="Your email" required> | ||
<button type="submit">SUBSCRIBE</button> | ||
</form> | ||
</section> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="footer-bottom"> | ||
<div class="footer-bottom-wrapper"> | ||
<small>© <span id="year"></span><span> RapiDoc</span> | All Rights | ||
Reserved Made with ❤️ by RapiDoc</small> | ||
<style> | ||
.social-wrapper a div i { | ||
color: #afb6c7; | ||
} | ||
.social-wrapper a div i:hover { | ||
color: #fff; | ||
} | ||
</style> | ||
<div class="social-wrapper"> | ||
<div class="social-links"> | ||
<div style="margin-left: 100px;font-family: sans-serif;"><i>Follow Us : </i></div> | ||
<a href="https://www.facebook.com/" target="_blank"><div><i class="fa-brands fa-facebook-f"></i></div></a> | ||
<a href="https://www.twitter.com"><div><img src="twitter.png" style="width: 16px; height: 15px;"></div></a> | ||
<a href="https://www.linkedin.com" target="_blank"><div><i class="fa-brands fa-linkedin"></i></div></a> | ||
<a href="#" target="_blank"><div><i class="fa-brands fa-instagram"></i></div></a> | ||
<a href="https://github.com/Anishkagupta04/RAPIDOC-HEALTHCARE-WEBSITE-" target="_blank"><div><i class="fa-brands fa-github"></i></div></a> | ||
<a href="+91 1234567890" title="+91 1234567890" target="_blank"><div><i class="fa-solid fa-phone"></i></div></a> | ||
<a href="[email protected]" target="_blank"><div><i class="fa-solid fa-envelope"></i></div></a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
<script src="https://cdn.jsdelivr.net/npm/toastify-js"></script> | ||
<script> | ||
document.addEventListener('DOMContentLoaded', () => { | ||
|