Reading-notes

summarizes the topics

one by one :

Bold & Italic

Superscript &Subscrip

Line Breaks & Horizontal Rules:

Strong & Emphasis

Quotations:

Abbreviations & Acronyms :

Author Details :

Summary:

TEXT

Definition Lists:

Summary:

Form Structure

TEXT INPUT :

Password Input :

+-input- type=”password” When the type attribute has a value of password it creates a text box that acts just like a single-line text input, except the characters are blocked out. They are hidden in this way so that if someone is looking over the user’s shoulder, they cannot see sensitive data such as passwords.

Text Are:

Radio Button :

Checkbox :

-select- A drop down list box (also known as a select box) allows users to select one option from a drop down list. The -select- element is used to create a drop down list box. It contains two or more -option- elements.

Multiple Select Box :

File Input Box :

Submit Button :

### Image Button :

Button & hidden Controls :

-button- The -button- element was introduced to allow users more control over how their buttons appear, and to allow other elements to appear inside the button. This means that you can combine text and imagesbetween the opening -button- tag and closing -button- tag.

Labelling Form Controls:

Grouping Form Elements :

HTML5: Form Validation:

You have probably seen forms on the web that give users messages if the form control has not been filled in correctly; this is known as form validation. Traditionally, form validation has been performed using JavaScript (which is beyond the scope of this book). But HTML5 is introducing validation and leaving the work to the browser.

-input- Many forms need to gather information such as dates, email addresses, and URLs. This has traditionally been done usingtext inputs. HTML5 introduces new form controls to standardize the way that some information is gathered. Older browsers that do not recognize these inputs will just treat them as a single line text box. type=-date- If you are asking the user for a date, you can use an -input- element and give the type attribute a value of date. This will create a date input inbrowsers that support the new HMTL5 input types.

HTML5: Email & URL Input :

type=”url” A URL input can be used whenyou are asking a user for a web page address

HTML5: Search Input :

Summary FORMS

And,

finaly introducing to css ..

end