INTRODUCTION TO HTML5
(impressive web designing part -2)
HTML is a standard language for developing and creating interactive websites, introduced by Tim Berners Lee.
HTML documents are created in any text editor for and can be run on any computer that has a web browser .
HTML is compatible with most of the web browsers.
Basic Structure :
HTML tags are keywords enclosed within angular brackets, that define how your web browser must format and display
the content Tags are not case sensitive.
Every HTML page is enclosed within two tags <html> and </html>.
This page is divided into two sections internally ,
1)HEAD SECTION .
2) BODY SECTION.
1)HEAD SECTION
Head Section contains title of the document which is enclosed within <title> and </title> of <head> and </head>.
2)BODY SECTION
The actual text of document is written within <body> and </body>
The design ,texts and documents are contain in Body Section..
An Attribute.
An attribute defines a property for an element ,consists of an attribute/value , and appears within the element's start tag . sometimes we need
additional information with a tag..
The following programme represents a simple structure of HTML page...
Input:-
<!doctype html>
<html>
<head>
<title>first page</title>
</head>
<body bgcolor ="green">
This is my first page!!
</body>
</html>
Output:-
Classification Of HTML tags.
HTML tags are classified as follows:
1)Container Tags:
Containers tags are also know as paired tags.
Containers tags have a beginning tags and end tags.The end tag is similar to beginning tag but with a "/" in front of it.
for example:-<head></head>,<title></title>..

Comments