Reading--Notes

Html

Forms

Why Forms?

The best known form on the web is probably the search box that sits right in the middle of Google’s homepage.

In addition to enabling users to search, forms also allow users to perform other functions online. You will see forms.

Form Control :

  1. ADDING TEXT :
  1. Making Choices:
  1. Submitting Forms:

Form Structure :

CSS:

list-style-type :

The list-style-type property allows you to control the shape or style of a bullet point (also known as a marker).

Table-properties :

Gaps Between Cells border-spacing, border-collapse :

Javascript

EVENT :

When the user interacts with the HTML on a web page, there are three steps involved in getting it to trigger some JavaScript code. Together these steps are known as event handling.

  1. Select the element node(s) you want the script to respond to.

  2. Indicate which event on the selected node(s) will trigger the response.

  3. State the code you want to run when the event occurs.

Event handlers let you indicate which event you are waiting for on any particular element. There are three types of event handlers.

  1. Html event handlers.

  2. DOM event handlers.

  3. Event listeners.