This is a one page index.html
website. I want to fixed the position of each section even after browser refresh. How can I modify main.js
for required JavaScript codes for this changes?
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My Page Title</title>
<meta name="description" content="My Page Description">
<link rel="stylesheet" href="css/styles.css?v=1.0">
</head>
<body>
<section class="home-section"> </section>
<section class="about-section"> </section>
<section class="gallary-section"> </section>
<section class="project-section"> </section>
<section class="testimonial-section"> </section>
<section class="contact-section"> </section>
<script src="js/scripts.js"></script>
</body>
</html>