Tuesday, July 26, 2011

How to construct a basic webpage

To make a basic webpage, you have to add the html tag for the start of the page:

<html>




<html>

Next, you add the head tag for the head of the page:

<html>

<head>

<head>


<html>

Then, you add the title tag to add a title on the top bar:


<html>

<head>

<title>
</title>

<head>



<html>


Finally, you add the body tag for the body of the page:

<html>

<head>

<title>
</title>


<head>


<body>





</body>
<html>

And that is the basic creation of a webpage.