HTML Tutorial

Menu For Tutorial

1. Basic Structure and Syntax
2. Basic Formatting
3. Adding Pictures, Sounds, and Movies
4. Adding Tables
5. Adding Links

I will be helping you make your own website with html.




You have to do the following to make an Html launch a TextPad program and write the following:

<html>



</html>
Save it then put ".html" at the end of the file name to make it into an Html. Then put the following:

<head>


</head>
The head is the top part of the website so anything you put inside them will end up at the top of your website. It will end up looking like this:

<html>
<head>



</head>
</html>

In order the to have a title put <title> to begin the title, write whatever you want for your title then write </title> to end it. You will then have this as a result:

<html>
<head>
<title></title>
</head>


</html>

That is the basic layout of html I will add mare later on.

No comments:

Post a Comment