top of page
HTML5.png

HTML

HTML DOCUMENT

  • The general structure of HTML document has two sections:-

  1. Head section

  2. Body section

Head Section

  • The head section contains the title that identifies the first part of our HTML document.

            <head>                   â€‹

<title> HTML </title>

</head>

Body Section

  • The body section of HTML document is used to design the body of a webpage.

  • It includes text as well as graphics.

​

<html>

<head>                   â€‹

<title> HTML </title>

</head>

<body>

SUNIL KUMAR SAHU

</body>

</html>

Related Topics

bottom of page