Computer Science, asked by sahanamxir, 3 days ago

Write the Basic Structure of an HTML.​

Answers

Answered by paddumarri22
2

Explanation:

  • line containing HTML version information
  • body, which contains the document's actual content. The body may be implemented by the BODY element or the FRAMESET element
  • hope this helps

follow for more answers

Mark me as branilist

Answered by sripuramswapnareddy
1

Answer:

HTML document begins and ends with HTML tag i.e. <HTML> </HTML>

Here <HTML> indicates the browser that it is a HTML document and </HTML> tells the browser that HTML document is completed.

• Header Tag i.e. <HEAD></HEAD>

Header Tag does not contain any text, it only contains the Title Tag in it.

• Title tag i.e. <TITLE></TITLE>

Anything written between this tag is not displayed on the screen but it is used to identify the Webpage.

• Body tag i.e.<BODY></BODY>

This is the main part of HTML document. The content which is to be displayed on screen as webpage should be written here. Body Tag contains the text as well as various tags but only the text will be displayed on Webpage.

Similar questions