answersLogoWhite

0

The H1 tag is used to display Headings in HTML.

<H1> Hi this is a H1 header </H1>

would display like

= Hi this is a H1 header =

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What are the characteristics of the hl in HTML tag?

&lt;h1&gt; is the tag which defines the size of heading in HTML. H1 denotes the biggest and H6 is the smallest.


Which HTML tag creates the largest heading on a webpage?

&lt;h1&gt;...&lt;/h1&gt; Kinda. The specification does not stipulate that this heading is to be any larger or smaller than any of the other headings. But the browsers default to making this on the largest of the 6.


What is h1 in HTML stand for?

H1 is a heading tag in HTML and is the most important heading tag. In a single HTML document there should only be one H1 heading tag. There are a total of six heading tags in HTML, h1, h2, h3, h4, h5, and h6. H1 is the most important and h6 is the least important. These are useful at organizing your content on a web page.


What is the use of h1 tag in an HTML document?

It's used for heading, h1 stands for heading 1.


What code would you use to design a webpage with white text?

&lt;html&gt; &lt;head&gt; &lt;title&gt;website&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;body style="color:white;"&gt; &lt;!--note the style tag is in CSS - this is the Proper way to change text color as defined by HTML 5 standards--&gt; &lt;h1&gt;my website&lt;/h1&gt; &lt;/body&gt; &lt;/html&gt; Note: see related links for more information about CSS styling.


What is the exact answer of heading?

Heading can be put in a HTML page via the &lt;head&gt; tag. The size can be varied by H1 to H6 tag.


How do HTML headers work?

= = = = = hello = == hello HTML tags must be within the "&lt;" and "&gt;" symbols.the largest heading would be: h1 inside these symbols ("&lt;" and "&gt;") for an opening tag, the text you wish to format would then follow, and the closing tag /h1 within these symbols ("&lt;" and "&gt;") would end the tag. Heading size decreases as the number within the tag increases, with h1 being largest and h7 being smallest


What are the attributes goes with the h1 tag?

In HTML 5, the &lt;h1&gt; element may have the attributes "class" and "style". In older versions of HTML (such as 4.01), other attributes such as "align" were supported, but these have been deprecated and removed in HTML 5 in favor of CSS.


What are the four tags you need in a properly formatted HTML file?

The HTML tag " &lt;html&gt; " , the head tag " &lt;head&gt; " , the title tag " &lt;title&gt; " and the body tag " &lt;body&gt; ". Please make sure to close those tags. Here is an example of those with a few extra tags. " &lt;html&gt; &lt;head&gt; &lt;title&gt; Your Title Here &lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;h1&gt; Your header here &lt;/h1&gt; &lt;p&gt; Your Text here &lt;/p&gt; &lt;/body&gt; &lt;/html&gt; " Also, look in the related links for a website for some tutorials for HTML.


What The correct HTML tag for the smallest size heading?

A number of tags only have one letter, like &lt;b&gt; or &lt;i&gt; or &lt;p&gt; or &lt;u&gt;.


What is h1 as it relates to HTML codes?

h1 is header1 it is used to give heading,there h1 to h6 in html


What does h1 in HTML stand for?

Heading 1 For example, this would mean that HOME is the first heading in HTML. &lt;html&gt; &lt;body&gt; &lt;h1&gt; HOME &lt;/h1&gt; &lt;/body&gt; &lt;/html&gt;