How to add H tags to my web pages?
Author: Andrew H.
Visited 1303,
Followers 2,
Shared 0
I would like to add h2 h3 tags on each of my pages. Can somebody explain the best way to do this as I have a website Im trying to move up the google ranking ut have no h tags. Thanks for the help! Andrew
Posted on the
Hello Andrew,
To insert the H tags you would have to insert HTML blocks into your pages. Inside the HTML block you would type for example <H2>Second level title</H2>
If you need to make some style you would insert the style or in the Advanced section of the HTML block or directly inline like this :
<H2 style="text-align: left; color: #000000; font-size: 10px; font-family: Arial;">Second level title</H2>
Hope this can help
Author
Hi Samuel,
Thanks for the advice. I did what you suggested . First I highlighted the "enable HTML code" button. I then added the simple codepage title.
When I previewed the page, the title had dissapeared!
So Im sure Ive gone wrong along the line!
Any suggestions
Andrew
<H2 style="text-align: left; color: #000000; font-size: 10px; font-family: Arial;">Second level title</H2>
#000000 indicates that black is the selected colur to be used. Try #ffffff, this is white.
this does work!
Author
Thanks for the help Nigel!
If my titles are all in bold do I also need to include this in the details aswell?
If so how can I do this?
Thanks again i do appreciate the help!!!
Andrew
Hello Andrew,
To have it bold you need to include at the end of the style code just after ; and before the closing " following code:
font-weight: bold;
It will look so as example:
<H2 style="text-align: left; color: #000000; font-size: 10px; font-family: Arial; font-weight: bold;">Second level title</H2>
Many thanks!