Skip to content

Commit

Permalink
Updated html files
Browse files Browse the repository at this point in the history
  • Loading branch information
Tejashri-Taral committed Jul 10, 2024
1 parent 280cfe8 commit 2781639
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Html-Files/appointment.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
left: 0;
width: 0%;
height: 8px;
background-color: #2b9b7f;
background-color: #3fbcc0;
z-index: 9999;

}</style>
Expand Down
2 changes: 1 addition & 1 deletion Html-Files/customer_agreement.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
left: 0;
width: 0%;
height: 8px;
background-color: #2b9b7f;
background-color: #3fbcc0;
z-index: 9999;

}</style>
Expand Down
2 changes: 1 addition & 1 deletion Html-Files/derma.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
left: 0;
width: 0%;
height: 8px;
background-color: #2b9b7f;
background-color: #3fbcc0;
z-index: 9999;

}</style>
Expand Down
2 changes: 1 addition & 1 deletion Html-Files/news.html
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@
left: 0;
width: 0%;
height: 8px;
background-color: #2b9b7f;
background-color: #3fbcc0;
z-index: 9999;

}</style>
Expand Down
2 changes: 1 addition & 1 deletion Html-Files/privacy_policy_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@
left: 0;
width: 0%;
height: 8px;
background-color: #2b9b7f;
background-color: #3fbcc0;
z-index: 9999;

}</style>
Expand Down
2 changes: 1 addition & 1 deletion Html-Files/terms_and_conditions.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
left: 0;
width: 0%;
height: 8px;
background-color: #2b9b7f;
background-color: #3fbcc0;
z-index: 9999;

}</style>
Expand Down
20 changes: 19 additions & 1 deletion test.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,27 @@
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />


<style>#progressBar {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 8px;
background-color: #3fbcc0;
z-index: 9999;

}</style>
</head>
<body>
<div id="progressBar"></div>
<script>
window.onscroll = function () {
var winScroll = document.body.scrollTop || document.documentElement.scrollTop;
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
var scrolled = (winScroll / height) * 100;
document.getElementById("progressBar").style.width = scrolled + "%";
};
</script>
<header class="header_container">
<div class="img">
<img id="rd-logo" style="width: 90px; height: auto;" src="/images/rd.png">
Expand Down

0 comments on commit 2781639

Please sign in to comment.