Prashant Katareprashantblog.hashnode.dev·Oct 28, 2024Static Navbar with HTML and vanilla CSS<div class="nav"> <a class="navItem" href="homePageUrl.com">Home</a> <a class="navItem" href="AboutPageUrl.com">About</a> <a class="navItem" href="ArticlesPageUrl.com">Articles</a> </div> .navItem { display: inline-block; mar...navbar
Mukibul Minhazmukibulminhaz.hashnode.dev·Aug 26, 2023Learn and Explore CSS as a BeginnerCSS means Cascading Style Sheet It is a powerful sheet for ornamenting the html pages There are 3 types of CSS. They are as follows: Internal CSS If we use <style> </style> in the HTML <head></head> for styling CSS External CSS If we use an externa...css basic
Mukibul Minhazmukibulminhaz.hashnode.dev·Aug 25, 2023CSS Learning with Rasel Bhai<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="CSS/style.css"> <title>My website</title> </head> <body> <p class="my-website">This is ...css basic