> Online tutorial : HTML element
Showing posts with label HTML element. Show all posts
Showing posts with label HTML element. Show all posts

HTML Syntax

HTML syntax
An HTML document consists of three parts
  • <html>
  • <head>section
  • <body>section
<html>
<head>
<title>
-------
</title>
</head>
<body>
--------
</body>
</html>

HTML element

HTML Elements
In the character enclosed within is basically as element.The element tree can be shown below



  • In all HTML document the root element is <html>which has two children head and body .Any text contained does not appear in client area of web browser.
  • The head element is used for providing certain information to web browser.



  • The <title>element is used to give title to the web page.
  • The <body> element contains the information which is to be displayed in the client area of web browser.
  •