Skip to main content

Posts

Showing posts with the label coding

How To Create a Login Form with the help of Html and CSS

  Step 1. Open the Source Code editor (like  Visual Studio Code   ) and make file of index.html and type this html code. <! DOCTYPE   html > < html   lang =" en "> < head >      < meta   charset =" UTF-8 ">      < meta   name =" viewport "  content =" width=device-width, initial-scale=1.0 ">      < link   rel =" shortcut icon "  href =" favicon2.png "  type =" image/x-icon ">      < link   rel =" stylesheet "  href =" login.css ">      < title > Please Login Your Account </ title > </ head > < body >      < form   class =" box "  action =" login.html "  method =" POST ">          < h1 > Login </ h1 >        ...