HTML...What does that mean you may ask.
Hyper
Text
Markup
Language = HTML
Its what webpages are made of. Here ill teach you just the basic of the basics.
HTML Code:
<html> <head> <title>Title of the page</title> </head> <body>
This is where the text goes.
</body> </html>
Ok, now lets break this down to be easier to understand.
the first and last tage with
<html> and
</html> are the beggining and ending tags of EVERY html page.
<head> &
</head> are the header tags, used for things such as
Meta Tags Which are more advanced. The
title tags
<title> &
</title> are the title tags, or what will appear at the top of the browser, these always go in the head tags. The Body Tags are Where the main body of your page goes. This could include many things, but for now, we will leave it at Text.
Now lets Practice This...How so? Open Notepad...Click start run type notepad and push enter. Then Do the same tags as i did. and then click save as. When typing the filename, type FILENAME.htm than click save. Then open up your favorite web browser and click...file, open file, find the file you just saved and click open.... at the top of the browser it should sayTitle of the page, and on the page it should just say This is where the text goes.
More to come soon...
If you have any question or comments, fell free to post them
