Skip to main content

Posts

Showing posts from August, 2021

How to make a website (Part -2) - Code And Man

How to make a website (Part -2) - code and man Hey guys how are you all today in this post I am going to give you the source code for free of my video called “How to create a website for free part 2” so let’s begin now: The CSS Source Code So guys at first I am going to give you the source code of the CSS so guys here’s the source code of the css: * {      margin : 0 ;      padding : 0 ;      box-sizing : border-box ;      font-family : cursive;      overflow-x : hidden ; } ::selection {      font-weight : bold ;      color : white ;      background-color : black ;      font-family :cursive; } li {      list-style : none ; } a {      text-decoration : none ; } /* CSS Start */ nav {      width : 100 % ;      height : 10 vh ;      color : white ;      background-color : rgb ( 7 , 135 , 255 ); } nav a {      font-weight : 900 ;      color : white ;      font-family : Georgia , 'Times New Roman' , Times , serif ; } .logo {      width : 20 % ; } .links {      width : 40 % ; } .left