Simple html codes for a web page
You can see the view of the website like this
html- start and end tag for html code
title- web page title tag
table - table tag
tr- row tag
td - column(table data) tag.
whetever you are going to write inside the page it should come inside td tags. all the starting with <tag name> and end with </tag name>.
Inserting a picture: to insert picture inside a column the command is <img src=" the source and image names with their extensions" alt="when you want to see the definition of a picture at the time mouse over the picture" />
<html>
<title> Welcome to My Site </title>
<table>
<tr>
<td> LOGO </td>
<td>
Welcome, Guest.
</td>
</tr>
</table>
</html>
|
You can see the view of the website like this
html- start and end tag for html code
title- web page title tag
table - table tag
tr- row tag
td - column(table data) tag.
whetever you are going to write inside the page it should come inside td tags. all the starting with <tag name> and end with </tag name>.
Inserting a picture: to insert picture inside a column the command is <img src=" the source and image names with their extensions" alt="when you want to see the definition of a picture at the time mouse over the picture" />