Cse HTML
Cse HTML
Cse HTML
HTML
Submitted To: Submitted By:
College officials Galactrose
CONTENTS
What is HTML?
Versions of HTML
How Does HTML Works
Basic HTML Document
Difference between HTML4 and 5
The Most Used HTML Tags
Pros
Cons
References
WHAT IS HTML?
YEAR VERSION
1991 HTML
1993 HTML+
HTML4 HTML5
HTML4 HTML5
HTML tags have two main types: block-level and inline tags.
Block-level elements take up the full available space and always
start a new line in the document. Headings and paragraphs are a
great example of block tags.
Inline elements only take up as much space as they need and
don’t start a new line on the page. They usually serve to format
the inner contents of block-level elements. Links and
emphasized strings are good examples of inline tags.
BLOCK-LEVEL TAGS
The three block level tags every HTML document needs to contain
are <html>, <head>, and <body>.
The <html></html> tag is the highest level element that
encloses every HTML page.
The <head></head> tag holds meta information such as the
page’s title and charset.
Finally, the <body></body> tag encloses all the content that
appears on the page.
INLINE TAGS
Mostly used for static web pages. For dynamic functionality, you
may need to use JavaScript or a backend language such as PHP.
It does not allow the user to implement logic. As a result, all web
pages need to be created separately, even if they use the same
elements, e.g. headers and footers.
Some browsers adopt new features slowly.
Browser behavior is sometimes hard to predict (e.g. older
browsers don’t always render newer tags).
REFERENCES
www.google.com
www.wikipedia.com
THANKS