answersLogoWhite

0

What else can I help you with?

Related Questions

What is the A HTML tag called?

The HTML tag is called the "anchor" tag.


How many types of comments are their in HTML?

Singular TAGS in HTML:Normally it considered tag only tag is the Singular Tag in Html.But tag is also can used as a Singular Tag. tag has dual functionality, means it can used as Paired Tag and also as Singular.For Example:if we use it as paired, it will work as we know already, but if we use this Tag using HTML like:dummy text dummy text dummy text dummy textNow it will produce the result as:dummy text dummy textdummy text dummy textThanks.Hammad Ahmad.Email: hammadahmadweb@aol.com


What does the HTML container tag communicate to your browser?

HTML communicates to the browser to define the page layout. It can tell the browser how and where to display text and other items on the page.


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.


What are the names of 3 advanced tags for HTML and what do they do?

1) - This element is a block level element that can be used as a container for grouping other HTML elements together.2) - This element is an inline element that can be used as a container for text.3) - This tag is a phrase tag. It is not deprecated, but it is possible to achieve richer effect with CSS.hope this helps :)


What is a container tag?

a container tag is a tag which is to be closed and also known as paired tag


What is web container?

depends what code you're talking about. if it's html, a container would be the code that contains content ("bla bla") <html> <head> <title> bla bla </title> </head> <body> </body> </html> in css, it would be whatever div tag you create such as: <div class="container"> bla bla </div>


How do you center your webpage?

Create a container DIV tag within the BODY tag and use CSS to center it in the browser.Example:Inside the CSS file.html body #container {width: 989px;margin: 0 auto;}Inside the HTML file:Page content here.


What is used to meta tag in HTML?

html


The tag that appears after the HTML tag is?

<head>


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