Posts

Showing posts from November, 2020

Responsive Nav Bar

 HTML CODE FOR NAV BAR :-  <! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < title > Document </ title >      < script   src = "https://kit.fontawesome.com/a076d05399.js" ></ script >      < script   src = "https://code.jquery.com/jquery-3.5.1.js" ></ script >      < script >          $ ( document ). ready ( function (){              $ ( '#icon' ). click ( function (){                  $ ( 'ul' ). toggleClass ( 'show' );     ...