HTML Tags H1 And H2

fiqoques

New member
What does H1 tags output look like if there are more than one H tags on a single page. When i put single H1 on any page the text written inside this text becomes a heading and thus becomes bold and same is the case with H2 but with H2 tag the size is a bit small so lets say i treat H2 as a subheading.
The point i want to discuss here is that what would be the size of H1 tags when displayed on different browsers. I am specially concerned on how will my HTML page with H1 and H2 tags will look like when they would be seen by a person using a smart phone like iPhone or Nexus or any other tablets. What is the ratio of size of texts of both H1 and H2. Also guide me if its better to use HTML heading tags or should i use <bold> or <strong> tags instead of <H> tags.
 
<H> Tags are very important for SEO point of view. We can use H1 to H6, header tags in a web page. H1 is one for main heading, H2 for Sub-heading and rest others will be use as importance of the content or small headings.
 
H1, H2, etc. tags are meant for defining the structure of your content - actually that what all HTML is for. If you are concerned with the appearance of them, you can change that easily via CSS. Just write custom CSS rules for your H tags to adjust them to the font and font size of your liking.
 
For someone who's using a smartphone the proportions of the content in the <h1> <h2> tags are going to be normal; the phone won't interpret your site differently. You could create a link to a site specifically designed for smartphone navigation, if you wanted. But if you wanted to further customize the content you're gonna have to use CSS.
 
You should definitely use the <h1>-<h6> tags as long as they indicate titles or headings on your site. The <strong> tag is okay to use inside a paragraph of text but not for headings, the <b> tag should not be used at all.

You're right in saying the <h#> tags look different in each browser/device, so make sure you style them in your CSS.

Something simple like this makes sure all H1s are the same size:

Code:
h1 {
    font-size: 14px;
}
 
H1 to H6 is a heading tag of HTML. <h1> tag defines the most important heading. <h6> defines the least important heading.
 
Last edited:
<h1> and <h2> is used to html language. This tag is called the heading tag.
<html>
<title>
heading tag
<head>
<body>
<h1>my first Heading..........</h1>
<h2>My second Heading..........</h2>
</head>
</body>
</html>
 
h1 and h2 are the heading tags.....these are used for increase the size of text......................................
 
<h1> <h2> This tag is called the heading tag.
<html>
<title>
<head>
<body>
<h1>bold 1..........</h1>
<h2>bold 2..........</h2>
</head>
</body>
</html>
 
The size of h1, doesnt mean anything!
And also you can style them with css.

H1 is really important in SEO.
I think the best thing is to have little numbers of good and clear h1 in each page of your site.
Not too many h1.
 
h1 and h2 word is defined is html subject and it is a heading tag and bold see the word.html head is total 6 heading as wel as H1,H2,H3,H4,H5,H6.
 
What does H1 tags output look like if there are more than one H tags on a single page. When i put single H1 on any page the text written inside this text becomes a heading and thus becomes bold and same is the case with H2 but with H2 tag the size is a bit small so lets say i treat H2 as a subheading.
The point i want to discuss here is that what would be the size of H1 tags when displayed on different browsers. I am specially concerned on how will my HTML page with H1 and H2 tags will look like when they would be seen by a person using a smart phone like iPhone or Nexus or any other tablets. What is the ratio of size of texts of both H1 and H2. Also guide me if its better to use HTML heading tags or should i use <bold> or <strong> tags instead of <H> tags.



the H tag H1 - H6 is commonly used for seo onpage optimization
differentiating the Title Description and other content on your website/page.
H1 is commonly used for the title so when google bots crawl your site it will properly identify the sites identity
 
Back
Top