Computer Science, asked by arunsharma1690, 3 days ago

Write basic structure of HTML and define all basic structures tag of HTML?​

Answers

Answered by babuminz7069
6

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.

Answered by sameerasheikh303
4

Answer:

basic structure of html is

<html>

<head>

<title>....</title>

<body>

page content here.

</body>

</html>

The HTML tag encloses all the HTML document and consists of the document header tags <head>... </head> and body tags <body>... </body>. ... The is called the title tag and is used inside the <head> tag. The title tag is the name of the document (webpage).

Attachments:
Similar questions