Posts

Showing posts from 2018

How To Create Login Form In HTML and CSS

Image
In this tutorial, we will be creating a login form using only CSS3 and HTML5

Form html

Image
HTML Forms are required when you want to collect some data from the site visitor. For example, during user registration, you would like to collect information such as name, email address, credit card, etc. Adding a simple search box to your website or you need to create a more complicated application. Html gives you the platform to collect the data from your users. The HTML <form> tag is used to create an HTML form and it has following syntax − <form action = "Script URL" method = "GET|POST"> form elements like input, textarea etc. </form>      Form Controls There are different types of form controls that you can use to collect data using HTML form − Text Input Controls Checkboxes Controls Radio Box Controls Select Box Controls File Select boxes Clickable Buttons Submit and Reset Button For example:- <head>     <title>table form</title></head>     <body>     <form>         <t

About CSS

Image
 What is CSS? CSS  stands for  C ascading  S tyle  S heets CSS describes  how HTML elements are to be displayed on screen, paper, or in other media CSS  saves a lot of work . It can control the layout of multiple web pages all at once External stylesheets are stored in  CSS files "Css allows you to create rules that specify how the content of an element should appear. For example, you can specify that the background of the page is mint-cream,all the paragraph appear in Gray using the Arial typeface and headings should be in a blue and  italic."      Css file:- where  p = Selector (which indicate the rule to applies.the same rule apply more than one element if you separate the element name with commas.) { color:gray;      font-family:arial;   } Declartions (Indicate how the element referred to in the selector should be styled. Declaration are split into two parts   Property   value and separated by a colon. Thr