HTML Table

HTML Table

                                    An HTML table is defined with the <table> tag.The table attributes are height , width and border .
Each table row is defined with the <tr> tag. A table header is defined with the <th> tag. By default, table headings are bold and centered. A table data/cell is defined with the <td> tag.
<tr> mean table rows
<th> mean table heading
<td> mean table coloum

List

        There are two types of list. Explain following:

Ordered HTML List

                                                         An unordered list starts with the <ol> tag. Each list item starts with the <li> tag.
The list items will be marked with numbers (1,2,3) by default.Example:
<ol>
  <li>HTML</li>
  <li>CSS</li>
  <li>PHP</li>
</ol>
we also change list type for example:
<ol style="a">
  <li>HTML</li>
  <li>CSS</li>
  <li>PHP</li>
</ol>

Unordered HTML List

                                                             An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.
The list items will be marked with bullets (small black circles) by default.Example:
<ul>
  <li>HTML</li>
  <li>CSS</li>
  <li>PHP</li>
</ul>
we also change list type for example:
<ul style="square">
  <li>HTML</li>
  <li>CSS</li>
  <li>PHP</li>
</ul>


1 comment:

introduction of computer

A video introduction of computer                                         very useful information in this video.                      ...