| What are tags ?
Tags are little bits of code that instruct a Browser how to display a page, sizes, colors, pictures, locations to find pictures to display. The tags can also relay information to Search Engines, site content rating, links to other sites etc. In other words we would be looking at plain text pages without them.
Most tags require a closing tag, a tag at the end of the function which has a slash after the left arrow symbol ie: < /body >
Please note that the space after < and before > on the Tags on these pages is not normal. It is only done here to prevent your browser from recognizing it as HTML code thus display it as text for you to view.
Lets have a look at some basic necessary Tags for your pages.
< html >
< head >
< title >< /title >
< /head >
< body >
< /body>
< /html>
|
The first is the opening Tag < HTML > which is the first line of the script. This tells the browser that it is the start of HTML document. Its` closing tag < /HTML > appears at the end of the document.
This is followed by the < HEAD > tag and its` closing < /HEAD > Between these tags is the tittle tag. Here also is were any META tags, background sound tags and some Java Script tags would placed.
The title of your page is placed between the < TITLE > < /TITLE > Tags. The title for your page can help Search Engines rate you higher on a search, if the keyword used in the search is the same as one in your title. But keep your title short.
The next Tag is the < BODY > This Tag may contain background information (image), font colors, onload instructions, link font colors, background color, etc. The body also requires a closing tag < /BODY >. It is between these body tags where most of the page building is done.
|