Friday, July 11, 2014

Tables

Tables are very important to make our page more professional it allow us to make it easy how to recognize our web page tables used to make parts of the page each part you can use it as you want first of all i want to know if any of you has any question i know some of you come and read my tutorials but i'll be thankful if you write any comment to encourage me :)
lets start with our lesson today:
<html>
<head>
<link rel="shortcut icon" href="myicon.ico"> */ as we said before its used to put an icon 
<title>My page</title> */ this for out web page title
</head>
<body>
<table>
<tr> */this is very important each table has rows and columns the <tr> tag is used to declare a row which has number of columns   
<td> */ this tag is used to initialize a columns into our  row we can use as much as we want but its wrong to put a row inside a row 
</td>
</tr>
<table>
</body>
</html>
 Note:"you can declare a new table in one of the columns it works fine but rememeber if you want your objects to be in the place where you want you should put between the <td> tags thats very important .

No comments:

Post a Comment