Posts

Showing posts from October, 2022

Semantict Tag

  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Use Of Semantic Tags </ title > </ head > < style >     header {         background-color : pink ;         width : 100% ;         height : 20% ;     }     nav {         background-color : skyblue ;         width : 100% ;         height : 20% ;     }     aside {         background-color : pink ;         width : 40% ;         height : 42% ;         float : right ;     }     sect...

tourist place

  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Tourist Places </ title > < style >     section {         background-color : rgb ( 255 , 255 , 133 );         width : 50% ;         height : 50% ;         float : left ;         outline-style : solid ;         font-size : 30px ;     }     aside {         background-color : pink ;         width : 50% ;         height : 50% ;         padding : 0px ;         float : right ;         out...

College Profile

Image
  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > College Profile </ title > </ head > < style >     * {         padding : 0 ;         margin : 0 ;     }     nav {         width : 100vw ;         position : fixed ;         padding : 20px ;         text-align : right ;         background-color : white ;         box-shadow : 0 0 5px rgba ( 0 , 0 , 0 , 0.355 );     }     nav a {         padding : 8px ;         margin-right : 20px ;   ...