<!doctype html> <html> <head> <meta charset="utf-8"> <title>Fixed Menu Bar on Top of Website</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="fixed-top"> <a href="https://siongui.github.io/">this</a> <a href="https://www.google.com/">Google</a> <a href="https://www.facebook.com/">Facebook</a> </div> <div style="height: 600px; background: blue;"> </div> <div style="height: 600px; background: yellow;"> </div> <div style="height: 600px; background: green;"> </div> <div style="height: 600px; background: gray;"> </div> </body> </html>