answersLogoWhite

0

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 & 5, some elements only have one tag, for instance the image element:

<img src="example.gif" alt="Fun Example">

Most other elements have two tags, one that opens the element, and one that closes it.

<p>This is a paragraph. It could contain an image, if we wanted it to.</p>

In XHTML, all the elements close. Elements like the image tag use an XML pattern called "self-closing."

<img src="example.gif" alt="Fun Example" />

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the meaning of HTML tag?

HTML as the name suggests is a markup language. Each tag represents a function in it.


How HTML works in webpage designing?

HTML works on the tag based technology. Each tag defines a function which it executes when run.


What is the function of i HTML tag?

&lt;i&gt; is for italics the HTML tag itself &lt;html&gt; is to let the browser know how to read the code and you save the file as .html or .htm. It simply reference the code that the web page is written in.


How HTML is interpreted?

HTML Code is interpreted differently by browsers. Each tag has a certain function attached to it.


How HTML code is interpreted?

HTML Code is interpreted differently by browsers. Each tag has a certain function attached to it.


What is the A HTML tag called?

The HTML tag is called the "anchor" tag.


What is the function of LIST tag in HTML language?

There is no LIST tag in HTML. There are two tags that can help us create lists. &lt;OL&gt; to create ordered lists &lt;UL&gt; to create unordered lists


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.


What is the use of basefont tag in HTML?

The basefont tag was used in versions of HTML prior to HTML 4.01. In HTML 4.01 it was deprecated. It is not supported in XHTML 1.0, nor in HTML 5. It was used to describe the font for an entire document. Later font tags would override this declaration. Currently, the basefont tag is only supported by Internet Explorer. A developer should use CSS to replicate its function (similar to the &lt;font&gt; tag.)


What is used to meta tag in HTML?

html


The tag that appears after the HTML tag is?

&lt;head&gt;


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