HTML Table
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:
we also change list type for example:
<ol style="a">
<li>HTML</li>
<li>CSS</li>
<li>PHP</li>
</ol>
<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>
<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>
<li>HTML</li>
<li>CSS</li>
<li>PHP</li>
</ul>
Very good
ReplyDelete