Computer Science, asked by kanishka994882, 1 year ago

basic structure of HTML

Answers

Answered by siya9536
1
\huge{Hey mate!!}

◆The basic structure of html is-

<html>

<head>

</head>

<body>

</body>

</html>



Hope this helps and pls pls mark as brainliest answer and don't forget to follow me...

Thanks, bye
Answered by Anonymous
0

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