Computer Science, asked by saritapradhan9557, 23 days ago


What is the HTML document structure? Define the tags.​

Answers

Answered by Rakshita146
0

Answer:

HTML document structure

An HTML 4 document is composed of three parts: a line containing HTML version information, a declarative header section (delimited by the HEAD element), a body, which contains the document's actual content.

An HTML 4 document is composed of three parts: a line containing HTML version information, a declarative header section (delimited by the HEAD element), a body, which contains the document's actual content. The body may be implemented by the BODY element or the FRAMESET element.

Answered by garimakanwar298
0

Answer:

The HEAD tag defines an HTML document header. The header contains information about the document rather than information to be displayed in the document. ... The HEAD tag can contain TITLE, BASE, ISINDEX, META, SCRIPT, STYLE, and LINK tags

The HEAD tag defines an HTML document header. The header contains information about the document rather than information to be displayed in the document. The web browser displays none of the information in the header, except for text contained by the TITLE tag. You should put all header information between the <HEAD> and </HEAD> tags, which should precede the BODY tag.

The TITLE tag defines the TITLE of the document. This is what is displayed in the top of your browser window. In addition, many search engines use this as their primary name of a document.

The BODY tag specifies the main content of a document. You should put all content that is to appear in the web page between the <BODY> and </BODY> tags.

The BODY tag has attributes that let you specify characteristics for the document. You can specify the background color or an image to use as a tiled background for the window in which the document is displayed. You can specify the default text color, active link color, unvisited link color, and visited link color. You can specify actions to occur when the document finishes loading or is unloaded, and when the window in which the document is displayed receives or loses focus.

-thank-you

❣️ Garima Kanwar❣️

Similar questions