Computer Science, asked by freefire009, 9 months ago

give me the basic structure of html programming in 5 to 6 lines

Answers

Answered by codiepienagoya
0

Structure of HTML:

<!DOCTYPE html>

<!--Describe the type of document-->

<html>  <!--html section-->

<head>  <!--head section-->

<title>structure of html</title>

</head>

<body> <!--body section-->  

<p>This is body section.</p>

</body> <!--body section closing tag-->

</html>  <!--html section closing tag-->

Explanation:

  • HTML stands for Hypertext-markup language, It defines the web content's significance and structure.
  • The document-type tag uses that is used to describe the version of HTML.  
  • The HTML tag is also known as a document, that is interlinked with each other. In this tag, two other tags uses are head tag and title tag.
  • The head tag is used for includes external files like links, CSS files, and JavaScript.
  • The title tag is used to represent a page title.
  • Then a body tag is used, in which what will be written, it will display on the screen.

Learn more:

  • Structure of html: https://brainly.in/question/3965965
Similar questions