What you just made is a
skeleton html document. This is the minimum required information for a web document
and all web documents should contain these basic components. The first tag in
your html document is <html>. This tag tells your browser that this is
the start of an html document. The last tag in your document is </html>.
This tag tells your browser that this is the end of the html document.
Ø The
text between the <head> tag and the </head> tag is header
information. Header information is not displayed in the browser window.
Ø The
text between the <title> tags is the title of your document. The
<title> tag is used to uniquely identify each document and is also
displayed in the title bar of the browser window.
Ø The
text between the <body> tags is the text that will be displayed in your
browser.
f Also Read
f Also Read
The Doctype
This is known as the
doctype2 (short for Document Type Definition). It must be the first item on a
web page, appearing even before any spacing or carriage returns.
HTM or HTML Extension?
When you save an HTML
file, you can use either the .htm or the .html extension. The .htm extension comes
from the past when some of the commonly used software only allowed three letter
extensions. It is perfectly safe to use either .html or .htm, but be
consistent. test.htm and test.html are treated as different files by the
browser.
How
to View HTML Source?
A good way to learn HTML is to look at how other
people have coded their html pages. To find out, simply click on the View
option in your browsers toolbar and select Source or Page Source. This will open
a window that shows you the actual HTML of the page. Go ahead and view the
source html for this page.
HTML
Tags
What are HTML tags?
HTML is a markup language and makes use of various
tags to format the content. These tags are enclosed within angle braces <Tag
Name>. Except few tags, most of the tags have their corresponding closing
tags. For example, <html> has its closing tag</html> and <body>
tag has its closing tag </body> tag etc.
Tag
|
Description
|
<!DOCTYPE...>
|
This
tag defines the document type and HTML version.
|
<html>
|
This
tag encloses the complete HTML document and mainly comprises
of
document header which is represented by <head>...</head> and
document
body which is represented by <body>...</body> tags.
|
<head>
|
This
tag represents the document's header which can keep other HTML
tags
like <title>, <link> etc.
|
<title>
|
The
<title> tag is used inside the <head> tag to mention the
document
title.
|
<body>
|
This
tag represents the document's body which keeps other HTML tags
like
<h1>, <div>, <p> etc.
|
<h1>
|
This
tag represents the heading.
|
<p>
|
This
tag represents a paragraph.
|
<b>
|
Makes
the text bold.
|
<big>
|
Makes
the text usually one size bigger than what's around it.
|
<i>
|
Makes
text italic.
|
<u>
|
Makes
text underline.
|
<div>
|
This
is division content.
|
0 comments:
We Cherish Your Comments Most, Kindly Drop your comments below. Don't forget to click "Notify Me" to know if we have responded to your comments, Thank You.