<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
.header {
position: fixed;
top: 0;
z-index: 1;
width: 100%;
background-color: #32a2a8;
}
.header h2 {
text-align: center;
}
.container {
width: 100%;
height: 10px;
background: #ccc;
}
.progress-bar {
height: 10px;
background: #005357;
width: 0%;
}
.text {
padding: 100px 0;
}
</style>
</head>
<body>
<div class="header">
<h2>Scroll Indicator</h2>
<div class="container">
<div class="progress-bar" id="mybar"></div>
</div>