Introduction to Html Language:
key Notes:
-
Html: Hyper Text Markup language
-
Html is a text file with tags
-
Html tags define how the page is displayed
-
Html page has an extention of ".htm" or ".html"
The Main Html Tags:
|
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
|
Quick Explanation of the html tags:The HTML TAG is the first line of
the code, after that, the HEAD TAG will be added, within the opening HEAD TAG
and its closing TAG, you find title of the page, as well as metatags, don't
worry about the metatags for now, we will explore them later on, but it is
important to know that the title tag is the title of your page, and it will be
displayed in the top left corner of the browser, the metatags are used to give
some form of description to your page. The BODY TAG is the main part of the
html page, here you can write what you want to appear in the page. For instance,
if you want to write an essay, you should put it within the BODY TAGS, once
finished, you will need to close your tags so, you will use the Body closing tag
first, then the html closing tag. that's it, you have officialy wrote your first
html page. very simple. |
Let's create our first html page:
|
<html>
<head>
<title>BZTalkOnline,
free html tutorial</title>
</head>
<body>
Welcome to my homepage, in this page you will find free tutorial about: asp,
html, javascript, css, and much more, feel free to learn these valuable
materials, and if you have any question, please don't hesitate to contact me.
have a nice day!
</body>
</htm>
|
Preview the html page:
Now, try to copy this html code from <html> to </html> then paste it in notepad, or
any editors you have, once you've done that, go ahead and save it as "
home.htm", make sure to save file type as: " all files" after that, go to the
location where you saved the file and open it, you will see something like
that: |

Next Article: fieldsets in html
|
|
|