Posts

Showing posts from September, 2023

Bootstrap whole in one

Bootstrap Grid: In  col-md-4 ,  -4  means each column will take 4/12 of row and  -md  means this property will be applied till md breakpoint. <! DOCTYPE html > < html lang =" en "> < head >     < meta charset =" UTF-8 ">     < meta name =" viewport " content =" width=device-width, initial-scale=1.0 ">     < title > Document </ title >     < link rel =" stylesheet " href =" node_modules/bootstrap/dist/css/bootstrap.css ">     < link rel =" stylesheet " href =" style.css ">     < style >         body {             background-color : # 292d3e ;         }         . c {             background-color : lightblue ;         }         . cc {             bor...

Responsive navbar

  <! DOCTYPE html > < html lang =" en "> < head >     < meta charset =" UTF-8 ">     < meta name =" viewport " content =" width=device-width, initial-scale=1.0 ">     < title > Document </ title >     < style >         : root {             font-size : 10px ;         }         body {             font-size : 1.6rem ;         }         . cont {             border : 2px solid black ;             display : flex ;         }         . elements {             margin : 0.5em ;             border : 2px solid blue ;             padding : 1em ; ...