Breaking

Saturday, 27 February 2016

Html Lecture 4 In Urdu

                            html

Link  ,, Image,,, table?
Link
    HTML links are hyperlinks.
A hyperlink is a text or an image you can click on, and jump to another document.
<a href="url">link text</a>
<a href="https://www.facebook.com/groups/538573976302388/?ref=bookmarks ">Visit our Group</a>

<a href="https://www.facebook.com/groups/538573976302388/" target="_blank">Visit our goup</a>
Image
      images are defined with the <img> tag
<img src="url" alt="some_text">
<img src="wrongname.gif" alt="HTML5 Icon" style="width:128px;height:128px;">

Table
Ok table ko ham crete karty hai <tabl> tag se
<th> use hota hai table head k lay means k jo field name hota hai </th>
<tr> use for table row </tr>
<td> use for table data </td>
<table style="width:100%">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Points</th>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td> 
    <td>94</td>
  </tr>
</table>



Mt Ali Okz 

No comments:

Post a Comment