answersLogoWhite

0

What is document tag in HTML?

Updated: 8/20/2019
User Avatar

Wiki User

11y ago

Best Answer

HTML does not have a DOCUMENT tag. The closest thing it has is DOCTYPE, which specifies which specification of HTML (there are several versions) is being used for that page.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is document tag in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What should be the last command in any HTML document?

The last command in any HTML document is a closing HTML tag. Just before it is the closing BODY tag. </BODY> <HTML>


What is the first tag in every HTML document?

The HTML document begins,and ends with the tag . The element defines the whole HTML document. The element has a start tag and an end tag The Start element Tags within the HTML tags begins the content to be displayed for the web page (end body tag) The basic Tags needed to start an HTML document (and must be ended) look like this: This is where the content goes


Which tag tells the Web browser that the document file contains HTML?

The <html> tag at the top and the bottom tells the browsers. It is defined as <html> and </html> at bottom.


What is the head tag in HTML document?

The <head> at the beginning of an HTML document comes between <html> and <body>. It is a container that includes information that relates to the entire document. You can include the following tags in the <head> tag: <title> (required in an HTML document), <style>, <base>, <link>, <meta>, <script>, and <noscript>.


What HTML tag is used to mark the top of the page?

The first tag you use when developing an HTML document is the tag. The first tag you use for the main content of your page is the tag. is the tag that marks the top of an HTML page. The minimum required first like is , which starts the definition of the page content.


Differentiate HTML tag from an HTML documents?

HTML tags are used to delimit HTML elements inside an HTML document.


What is the fundamental unit of HTML syntax?

the <> brackets, for example to begin an HTML document you begin with the tag <html>


What element embeds a script into an HTML document?

The script tag.


Do you have to open a new HTML document to edit a hyperlink?

No, we can edit the hyperlink in the same document. <a> tag can be placed after or before any tag.


How do you use hyperlinks in frames in a HTML document?

You can use hyperlinks in frames too in an HTML document. You can place the anchor tag out side of a frame.


Why should you include the HTML tag in your Web document?

So the browser knows when to start and stop the HTML content.


What tag determines the type of HTML that a browser expects?

The !DOCTYPE tag tells the browser what markup to expect in the rest of the document.