Navigation Bar Using HTML & CSS | HTML & CSS Tutorial

In this video, we are going to create a simple Navigation Bar using HTML and CSS. Also we will make the navigation bar fixed at the top of the webpage. Source Code : <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style... Read more

How to create Sticky Navbar on scroll ?

In this tutorial, we will be learning to create sticky navbar on scroll using CSS and few lines of JavaScript code. Source Code : <style type="text/css"> body{ background-color: #aacad6; margin:0; } .sticky{ position: fixed; top:0; width: 100%; } .header{ background-color:... Read more