Forms

 

form

 

An HTML form is used to collect user input. The user input is most often sent to a server for processing. like the search box in the middle of Google’s homepage,

 

List types in HTML

lists

There are three list types in HTML:

  1. unordered list — used to group a set of related items in no particular order.
  2. ordered list — used to group a set of related items in a specific order.
  3. description list — used to display name/value pairs such as terms and definitions.

Lists can be nested inside one another. Each list type has a specific purpose and meaning in a web page.

to know more about lists in html read this book Chapter 3: “Lists” (pp.62-73)

 

HTML TABLES

 

tables

 

The HTML tables allow web authors to arrange data like text, images, links, other tables, etc. into rows and columns of cells.

The HTML tables are created using the <table> tag in which the <tr> tag is used to create table rows and <td> tag is used to create data cells. The elements under <td> are regular and left aligned by default

Table Heading

Table heading can be defined using <th> tag. This tag will be put to replace <td> tag, which is used to represent actual data cell. Normally you will put your top row as table heading as shown below, otherwise you can use <th> element in any row. Headings, which are defined in <th> tag are centered and bold by default.

Summary

What are Events?

 

events

 

We can fill in the blanks in this statement in a bajillion different ways. The first blank calls out something that happens. The second blank describes the reaction to that. Here are some examples of this statement filled out: exmple This generic model applies to all of the code we’ve written together. This model also applies to all of the code our favorite developer/designer friends wrote for their applications. There is no way of escaping this model, so…there is no point in resisting. Instead, we need to learn to embrace the star of this model, the very talented critter known as the event. to know more about events visit this site or you can red this book Chapter 6: “Events” (pp.243-292)