STEP - 2
Now you have to make your page like a webpage with Home, Contact us, About us pages.
see how you make your website.
<html>
<head>
<title> starting of website </title>
</head>
<body>
<h1> first personal page </h1>
<!-- now you have to make table for home, about, contact pages -->
<table width="900" border="1"> <!-- you can choose width and border according to you --!
<!-- now you have to make a row and column for Page Title --!
<tr> <!-- <tr> is for row and <td> is for column -->
<td> Home </td>
<td> Contact us </td>
<td> About us </td>
</tr>
</table>
<table width="900" height="450" border="1"> <!-- you can choose width, height and border according to you --!
<tr>
<td> <p> this is your starting of first web page </p> </td>
</tr>
</table>
</body>
</html>
<!-- make sure that you have to save your HTML page in .html -->
Now you have to make your page like a webpage with Home, Contact us, About us pages.
see how you make your website.
<html>
<head>
<title> starting of website </title>
</head>
<body>
<h1> first personal page </h1>
<!-- now you have to make table for home, about, contact pages -->
<table width="900" border="1"> <!-- you can choose width and border according to you --!
<!-- now you have to make a row and column for Page Title --!
<tr> <!-- <tr> is for row and <td> is for column -->
<td> Home </td>
<td> Contact us </td>
<td> About us </td>
</tr>
</table>
<table width="900" height="450" border="1"> <!-- you can choose width, height and border according to you --!
<tr>
<td> <p> this is your starting of first web page </p> </td>
</tr>
</table>
</body>
</html>
<!-- make sure that you have to save your HTML page in .html -->
Post a Comment