answersLogoWhite

0


Best Answer

A web page consists of a DOCTYPE, a HEAD element and a BODY element. The HEAD and BODY tags are optional in HTML but required in XHTML. The HEAD element must contain a TITLE element.

The following is a valid page in HTML4.01:

<!doctype html public "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<title></title>

<p></p>

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What tag opens and closes all webpages?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What tag opens amd closes all webpages?

There is not one but many tahs that open and close on all webpages. HTML tag, BODY tag etc are some which are closed on all.


What is opening and closing tag?

&lt; x &gt; opens, where x is a specific HTML-code, like b for bold. &lt;/ x &gt; closes E.g. &lt;b&gt;This is shown bold&lt;/b&gt;


The video TOE TAG warning about the dangers of distracted driving opens to a scene at?

The video toe tag warning about the dangers of distracted driving opens to scene at:


How do webpages use graphics?

You should use HTML tag "img" for that. look at the related link


TOE TAG warning about the dangers of distracted driving opens to a scene?

The toe tag warning video about the dangers of distracted driving opens up to a scene at a morgue. Then, it opens up to scenes followed by a police station and a doctor's office.


Does Google use META tags to categorize its webpages?

No, they no longer use the keywords meta tag to rank sites in the results pages. They do use the TITLE tag, meta title tag (two separate entities) &amp; the meta description along with other tags such as the robots meta tag.


What function does a tag serve?

An HTML tag delineates the beginning and end of an HTML element. The data contained in that element is supposed to be somehow related. In HTML 4 &amp; 5, some elements only have one tag, for instance the image element: &lt;img src="example.gif" alt="Fun Example"&gt; Most other elements have two tags, one that opens the element, and one that closes it. &lt;p&gt;This is a paragraph. It could contain an image, if we wanted it to.&lt;/p&gt; In XHTML, all the elements close. Elements like the image tag use an XML pattern called "self-closing." &lt;img src="example.gif" alt="Fun Example" /&gt;


How is HTML used?

HTML is used by placing tags at their proper position. A tag &lt;p&gt; is used for defining a paragraph.


Which tag is used to divide the webpages into multiple parts?

to divide the html, use &lt;div&gt; to divide the page, i think you use &lt;hr&gt;... right?


What are ten tag found in HTML?

Ten tags are: &lt;html&gt; Opens and closes all HTML pages. &lt;title&gt; Tells what the title of the page is. The title of this page is WikiAnswers - What are ten tag found in HTML &lt;body&gt; Encloses what you see on a web page. &lt;br&gt; Goes to the next line. &lt;p&gt; Skips a line. &lt;hr&gt; Creates a line across the page. &lt;img&gt; Inserts an image. &lt;frame&gt; Puts two or more pages into one window. &lt;a&gt; Creates a hyperlink. &lt;b&gt; Makes text bold.


What function does the HTML tag perform?

An HTML tag delineates the beginning and end of an HTML element. The data contained in that element is supposed to be somehow related. In HTML 4 &amp; 5, some elements only have one tag, for instance the image element: &lt;img src="example.gif" alt="Fun Example"&gt; Most other elements have two tags, one that opens the element, and one that closes it. &lt;p&gt;This is a paragraph. It could contain an image, if we wanted it to.&lt;/p&gt; In XHTML, all the elements close. Elements like the image tag use an XML pattern called "self-closing." &lt;img src="example.gif" alt="Fun Example" /&gt;


How are webpages using scripts implemented in a browser?

Usually, the scripts are implemented using JavaScript, and the HTML "SCRIPT" tag. More often on professional pages, though external scripts are used.