Skip to main content

Posts

Showing posts from November, 2023

Netflix clone CSS Renew : CSS

  @import url ( 'https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;700&display=swap' ); * {     padding : 0 ;     margin : 0 ;     /* font-family: 'Poppins', sans-serif; */     font-family : 'Poppins' , sans-serif ;     box-sizing : border-box ; } body {     background-color : black ; } .main {     /* background-image: url("Image/Net_hero1_img.jpg"); */     background-image : url ( "Net_hero1_img.jpg" );     height : 80vh ;     position : relative ;     background-position : center center ;     background-repeat : no-repeat ;     background-size : max ( 2200px , 110vw );     /* background-size: max(100%) */ } .main .box {     height : 80vh ;     width : 100% ;     opacity : 0.5 ;     background-color : black ;     position : absolute ;     top : 0 ; } @media scr...

Netflix Clone : CSS

  @import url ( 'https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;700&display=swap' ); * {     padding : 0 ;     margin : 0 ;     /* font-family: 'Poppins', sans-serif; */     font-family : 'Poppins' , sans-serif ;     box-sizing : border-box ; } body {     background-color : black ; } .main {     /* background-image: url("Image/Net_hero1_img.jpg"); */     background-image : url ( "https://assets.nflxext.com/ffe/siteui/vlv3/d1532433-07b1-4e39-a920-0f08b81a489e/67033404-2df8-42e0-a5a0-4c8288b4da2c/IN-en-20231120-popsignuptwoweeks-perspective_alpha_website_large.jpg" );     height : 80vh ;     position : relative ;     background-position : center center ;     background-repeat : no-repeat ;     background-size : max ( 2200px , 110vw );     /* background-size: max(100%) */ } .main .box {     height : 80vh ; ...

Netflix Clone : Html

  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "utf-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1" >     < meta name = "viewport" content = "width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=0" >     < title > Netflix Clone </ title >     < link rel = "stylesheet" href = "style.css" >     < link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"         integrity = "sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="         crossorigin = "anonymous" referrerpolicy = "no-referrer" /> </ head > < body >     < div class = "main" >         < Nav >             ...