Posts

Showing posts from October, 2020

LOGIN PAGE

Image
Create a Login Page Using HTML and CSS : Source Code : - HTML  :- <! DOCTYPE   html > < html   lang = "en" > < head >     < meta   charset = "UTF-8" >     < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >     < title >Login Form</ title >     < link   rel = "stylesheet"   href = "style.css" >     < script   src = "https://kit.fontawesome.com/6618bd5d88.js"   crossorigin = "anonymous" ></ script > </ head >   </ head > </ head > < body >     < div   class = "login-form" >         < div   class = "text" >LOGIN</ div >         < form   action = "" >     ...

SIGN UP PAGE

Image
Create a Sign Up Page Using HTML and CSS  SOURCE CODE : - HTML :-  <! DOCTYPE   html > < html   lang = "en" > < head >     < meta   charset = "UTF-8" >     < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >     < title >Login Page</ title >     < link   rel = "stylesheet"   href = "style.css" > </ head > < body >          < div   class = "login-wrapper" >         < div   class = "login-img" >             < img   src = "3.jpg"   alt = "" >         </ div >         < div   class = "login-form" > ...

Neumorphism Button

Image
Create Neumorphism Button Using HTML and CSS  Source Code :-  HTML :- <! DOCTYPE   html > < html   lang = "en" > < head >     < meta   charset = "UTF-8" >     < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >     < title >Neomorphism</ title >      <!-- this is custom  css -->     < link   rel = "stylesheet"   href = "22_september.css" >     </ head > < body >     < div >         < button   class = "noselect red" >BUTTON </ button >         < button   class = "noselect green" >BUTTON</ button >     </ div >   ...