Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Anjaliavv51 committed Jun 1, 2024
2 parents a0290ae + 9f46d12 commit c2219b4
Showing 1 changed file with 32 additions and 59 deletions.
91 changes: 32 additions & 59 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@
<link href="remixicon/remixicon.css" rel="stylesheet">
<link href="swiper/swiper-bundle.min.css" rel="stylesheet">


<link rel="stylesheet" href="chatbox.css">
<!-- Google Fonts Link For Icons chatboxx -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,1,0" />
<script src="chatboxx.js" defer></script>

<link href="patient-portal.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
Expand Down Expand Up @@ -117,7 +121,7 @@
}

/*Preloader CSS*/
.pre {
.pre{
position: fixed;
top: 0;
left: 0;
Expand Down Expand Up @@ -183,6 +187,7 @@
}
}


.loader--hidden{
opacity: 0;
visibility: hidden;
Expand All @@ -202,27 +207,6 @@
</div>
<!-- ############# Header ############# -->

<header class="header_container">
<div class="img">
<img id="rd-logo" style="width: 90px; height: auto;" src="/images/rd.png">
</div>

</div>
<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"><button>Service</button></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"><button>Sign in/Sign up</button></a>
</ul>
</nav>
</div>
</header>

<button class="chatbot-toggler">
<span class="material-symbols-rounded">mode_comment</span>
Expand All @@ -246,28 +230,30 @@ <h2>Chatbot</h2>
</div>
<!-- ############# Header ############# -->

<header id="header" class="fixed-top">
<div class="container d-flex align-items-center">

<h1 class="logo me-auto"><a href="index.html">RapiDoc</a></h1>

<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto active" href="#home">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<li><a class="nav-link scrollto" href="#doctors">Doctors</a></li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<header class="header_container">
<div class="img">
<img id="rd-logo" style="width: 90px; height: auto;" src="/images/rd.png">
</div>

<a href="#appointment" class="appointment-btn scrollto">
<span class="d-md-inline">EMERGENCY</span></a>
</div>
<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"><button>Service</button></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"><button>Sign in/Sign up</button></a>
</ul>
</nav>
</div>
</header>

</div>
</header>



<div class="container" style="display:flex ;">
<div class="content">
Expand All @@ -289,6 +275,7 @@ <h4>
<main id="main">



<!-- ############ Featured Services Section ############ -->


Expand Down Expand Up @@ -920,7 +907,7 @@ <h4>Quick Links</h4>
<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="./Html-Files/contact.html">Contaact Us</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#doctors">Doctors</a></li>
</ul>
Expand Down Expand Up @@ -1061,9 +1048,9 @@ <h4>RAPIDOC Newsletter</h4>
<script src="https://unpkg.com/typed.js@2.0.132/dist/typed.umd.js"></script>
<script src="js/main.js"></script>
<script src="patient-portal.js"></script>

<script src="https://cdn.botpress.cloud/webchat/v1/inject.js"></script>
<script src="https://mediafiles.botpress.cloud/b1d766f9-2fd0-4a60-96bb-fc1f494d156c/webchat/config.js" defer></script>

<script>
ScrollReveal({
//reset: true ,
Expand All @@ -1080,20 +1067,6 @@ <h4>RAPIDOC Newsletter</h4>
ScrollReveal().reveal('.footer', { delay: 400 , origin:'bottom' });
</script>
<script>
/* document.addEventListener("DOMContentLoaded", function() {
const preloader = document.getElementById('preloader');
const mainContent = document.getElementById('main-content');
// Listen for the window load event
window.addEventListener('load', function() {
// Set a delay before transitioning the preloader and main content
setTimeout(function() {
preloader.classList.add('hidden');
mainContent.classList.remove('hidden');
mainContent.classList.add('visible');
}, 300); // 2000 milliseconds = 2 seconds delay
});
}); */

window.addEventListener("load", () => {
const loader = document.querySelector(".pre");
Expand Down

0 comments on commit c2219b4

Please sign in to comment.