answersLogoWhite

0

CENTER

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the use of CENTER TAG in HTML?

The <Center> tag is used to center the text that follows the tag on the web page. All the text that is typed between the <Center> and </Center> tags will be centered and displayed on screen.


What typically displays text as bold and center aligned?

The <B> </B> tag is used to display text in Bold <Center> </Center> tag is used to center align text.


What tag indicates where to place data in the center of the webpage?

Do you mean you want the text centered on the page? You could use the <p align="center"> tag, I think that would work.


What is the code to center a heading in HTML?

The CENTER tag in HTML is used to center blocks of code within an HTML document. The tag is very easy to use as you only have to open it and close it around the text you want centered. This can be 2 lines of text or an entire webpage. See the example below. <center> Smasher is teaching me HTML </center> This would take the text and center it on the screen. If you want to center the whole page simply put the open tag at the beginning of the document and the close tag at the end.


How do you center text on deviantart?

"Center TextThe opening tag for centering is , and the closing tag is . If you do not use the closing tag, then all text after the opening tag will be displayed centered."


Which tag is used to scroll text in an HTML webpage?

You don't need to use a tag - scrollbars will automatically be added at the side of the page if the text is long enough.


Which tag is used in HTML to jumb to next page?

<a href="(whatever the name of the next page is)">(link text)</a>


How do you center the page on Google Chrome on windows 7?

You can center a page on Google Chrome while development. In HTML <center> tag can be used for that purpose.


What is the definition of B tag in HTML?

It stands for Bold. It is used to bold text in a web page.


What does div mean?

A div tag in HTML represents a division, usually with its own style, class, or alignment. For example, the HTML <div align=center>Text</center> would align the text in the center of the page


What is the purpose of the tag in HTML file?

tags are used to differentiate the text like headings, normal text


What does centre in HTML mean?

Center used to be a tag that aligned text in the center of the window, but with the newest version of HTML (HTML5), the tag was deprecated (they got rid of it). It used to look like this: <center>This text is centered!</center> But now you should use CSS like so: <p style="text-align:center;">This text is also centered!</p> The new way changes no part of the appearance on the webpage. If you use the old one, you will run into some trouble.