Showing posts with label height. Show all posts
Showing posts with label height. Show all posts

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>


HTML text TAGS

HTML TAGS EXAMPLES

  1. Heading tags 
                               Heading tags is use for creating heading in pages. There are six heading tags. For example.
<H1>   Head  1   </H1>
<H2>   Head  1   </H2>
<H3>   Head  1   </H3>
<H4>   Head  1   </H4>
<H5>   Head  1   </H5>
<H6>   Head  1   </H6>

   2. Paragrah

                            Paragraph tag is use for writing paragraph.
                              For example.
<p> There is a paragraph </p>

   3. Link tag

                         Link tag use for link one page to another page. In link tag we use a attribute (href). For example.
<a href="http://www.google.com"> Google </a>
  

    4. Image tag 

                             Image tag is use for show image in web page. In image tag we us attribute of src. For image tag we know the name and extantion of image.img tag we also use height and width attributes. For example.

   <img src="Google.png" height="100" width="100




">


introduction of computer

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