Posts

Ultraedit Website Clone(Part-2 full dezine)

Image
  EXERCISE ON CSS EXERCISE VII *it is responsive.😄 HTML Code: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title >ultra edit clone</ title > </ head > < style >     @import url ( 'https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Open+Sans:wght@300&family=Poppins:wght@300&family=Roboto&display=swap' ); </ style > < style >     @import url ( 'https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Open+Sans:wght@300&family=Poppins:wght@100;300&display=swap' ); </ style > < style >     * {         margin : 0 ;         padding : 0 ;     }     body {         padding-bottom : 500 px ...

UltraEdit Website Clone(Part 1- Nav Bar)

Image
   EXERCISE ON CSS EXERCISE VI HTML Code: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title >ultra edit clone</ title > </ head > < style >     @import url ( 'https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Open+Sans:wght@300&family=Poppins:wght@100;300&display=swap' ); </ style > < style >     * {         margin : 0 ;         padding : 0 ;     }     a {         color : inherit ;         text-decoration : none ;         font-size : x-small ;         font-family : 'Merriweather' , serif ;         font-family : 'Open Sans' , sans-serif ;   ...

Basic Website Dezine

Image
   EXERCISE ON CSS EXERCISE V HTML Code: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title >Document</ title > </ head > < style >     @import url ( 'https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Open+Sans:wght@300&family=Poppins:wght@300&display=swap' );     * {         padding : 0 ;         margin : 0 ;     }     :root {         --bodyback : #cbccd5 ;         --navback : #040468 ;         --spncol : white ;         --undercol : red ;     }     body {         background-color : var ( --bodyback );     }     header...