Computer Science, asked by junmoni1540, 10 months ago

what is the basic structure of HTML file​

Answers

Answered by Hacket
2

Explanation:

An HTML Document is mainly divided into two parts:

HEAD: This contains the information about the HTML document. For Example, Title of the page, version of HTML, Meta Data etc.

BODY: This contains everything you want to display on the Web Page.

<html>

<head>

<title> title of page </title>

</head>

<body>..............

............................

</body>

</html>

Answered by 2008shrishti
0

Answer:

An HTML Document is mainly divided into two parts:

HEAD: This contains the information about the HTML document. For Example, Title of the page, version of HTML, Meta Data etc.

BODY: This contains everything you want to display on the Web Page.

<html>

<head>

<title> title of page </title>

</head>

<body>

</body>

</html>

Explanation:

Hope this answer will help you.

Similar questions