Part 1
Ok well I'll explain how to make a simple website with HTML... I have my ways of doing things and thats how I like it. But for this tutorial i'm going to show it the so called "Professional" Way.
Lets start out by making our starting tags... anything in <>'s are called Tags Example:. So here we go.
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
Ok Let me explain a few things.
<HTML>
This tells the client what kind of scripting we're doing.
Which is HTML (Hyper Text Markup Language)
<HEAD>
This is the very top of the website. Its recommended not to have anything here but in later tutorials i will show what it can be used for.
<TITLE>
This is the title directly after put any text you want. This text will be up in the Blue bar of your internet browser... HTML tags can not be posted between this.
</TITLE>
</HEAD>
This closes both TITLE and HEAD so that we are no longer interacting with these parts of the website.
<BODY>
This is the area that the content goes for our website. Images text and other things are placed here.
</BODY>
</HTML>
This ends the body tag and HTML tag... DO NOT POST ANYTHING AFTER it can screw up your website majorly, or even your web browser.
Ok that explains the basics you can now put in Text and have a small website.
Part 2
In Part 2 i'll explain how to add small ammounts of basic code to enhance the look and feel of your personal website.
Bold,Italics,underline
These are 3 very easy and simple text modifing codes.
<b> </b>
Putting text between these tags will make the text bolded
<i> </i>
Putting text between these tags will make the text italicised
<u> </u>
Putting text between these tags will make the text underlined.
OK now for the LineBreak
The line break is a simple code that is easily abused and is helpful. its basically like hitting enter only... well it works.
Theres 2 ways to do the line break
<br> which is how i learned and it does not need a closing tag
the second way is <br /> its the exact same but I don't know why they made it
I use just
Well this is the end of Part 2 stay tuned for part 3 if there is one.