HTML Introduction


html introduction
After previous part of Html Tutorial Now we are going to start  the next part called the Introduction part. At first refresh your mind for be easy and active to learn html language to make your site like a pro.


A small HTML document







<!DOCTYPE html><html>
 <head>
<title>Page Title</title></head>
 <body>
 <h1>My First Heading</h1>
 <p>My first paragraph.</p>
</body>
</html>

[ Change the Orange colour font as your wish ]

Try%20in%20Html%20Editor


Explanation of these HTML tags
The DOCTYPE  defines the document type to be HTML
The text between <html> and </html> describes an HTML document
The text between <head> and </head> gives information about the document
The text between <title> and </title> gives a title for the document
The text between <body> and </body> describes the visible page content
The text between <h1> and </h1> describes a heading
The text between <p> and </p> describes paragraph
[[ Using this HTML description, a web browser like Google chrome, Mozila Firefox etc. can display a document with a heading and a paragraph.

 I Know that you have many question ?

What is HTML Tags ?

Answer : HTML tags are the Keywords (names of tags)  which surrounded by the < and >
as a example:
<Any tagname> Your content here</Anytagname>

HTML tags normally come in pairs like <p> and </p>
The first tag in a pair is the start tag, the second tag is the end tag
The End tag is written like the start tag, but with a slash ( / )  before the tag name.

The <!DOCTYPE> Declaration

The <!DOCTYPE> declaration helps a browser to show a web page.
There are different types of document on the web.
To display a document correctly, the browser must know both type and version.
The doctype declaration is not case sensitive. All cases are acceptable.

Previous Chapter                    Next Chapter


Labels: