The four elements that make up the skeleton of an html document are

Answered on

HTML Skeleton

Each HTML page is made up of a basic skeleton. This skeleton contains and holds all of the other tags that define the web page.

• <html> - Surrounds all of the data. Starts at the top of the document and the closing tag </html> is the last tag in the document.

• <head> - Contains information about the page like title, style, etc.

• <title> - Displays the page title in tab of the browser.

• <body> - Contains all of the content that displays on a page.

 

Related Questions