Computer Science, asked by luckysingh729, 1 year ago

Write down the basic structure of HTML page?

Answers

Answered by smruti9
3
Basic structure  of an HTML document. An HTML document has two main parts: head. The head element contains title and meta data of a web document.

hope this answer helpful to you.

please mark me as brainlist . if this answer is helpful to you
Answered by Anonymous
1

Answer:

< ! DOCTYPE html >

<html>

<head>

<title> -------- </tilte>

</head>

<body>

------

------

</body>

</html>

Explanation :-

  • <! DOCTYPE html > This element is used to specifies the type of the document. It inform the web browser about the version of the mark up language in which the page is written. It is an empty element and does not have a corresponding closing tag.
  • <html> This element is written after <! DOCTYPE html > element and defines the document as an HTML file.
  • <head> This element is a container element that includes identification and supplementary information about the document.
  • <title> This element has the title of this web page. It is displayed by title bar when you view this page in web browser.
  • <body> This element has the main content of the web page. It can include texts, image, and everything you want to display on the web page.

Similar questions