Html Structure:
- Each and every HTML Document open with <html> & close with </html>
- It had two major parts
1. head
2. body
- The both head and body tags should not mingle with together.
Head:
- Head part is starting with <Head> and ending with </Head> tags.
- It had a Title tag, is a paired tag.
Body:
- Body tag starts with <body> and Ends with </body> tags.
- It contain more tags on it, which helps to produce the effects.
Structure:
<html>
<head>
<title>-------------------</title>
</head>
<body>
------------------------
</body>
</html>
For Example:
<html>
<head>
<title> first program</title>
</head>
<body>
This is my first trail program in HTML program .
</body>
</html>
Output:
This is my first trail program in HTML program.
-------------------------------------------------------Thank You-----------------------------------------------------