Fonts

Can someon tell me what the following fonts are?

H1, H2, and H3

I am trying to adjust all of the font sizes on my site, and for the life of me I cannot figure where these are at on the website. I have tried to figure it out by changing the size one at a time, clearing cache, and logging back into the site to see what has changed, but so far no luck.

  • 230
  • More
Replies (9)
    • CSS spec defines the header sizes like so: h1 { font-size: 2em; margin: .67em 0 } h2 { font-size: 1.5em; margin: .75em 0 } h3 { font-size: 1.17em; margin: .83em 0 }

      • Hopefully this can help

        • Thank you sir 

          • One way to consider this is that

            h1 is the largest possible heading front

            h2 is the next size smaller and so on

            Usually the most common or base font is a p tag  <p> </p>

            but there are smaller fonts like in footnotes

            p tags are mostly around 11pt, 12pt, 13pt size fonts

            h tags are usually larger and have some bold applied

            but someone would make a p tag adjusted so that it is bold of any size

            Why then use h tags if p tags can do whatever an h tag does?

            Because when the computer is told it is a p tag the computer will not regard it as a heading but only as regular paragraphing.

            Once it is an h tag no matter what size it is, the computer will regard that as a heading which is important across the internet as an alert to search engines.

            • Just so you know, the H1, H2, etc settings only change "how" the font looks such as the size and boldness, etc. 

              The actual font is located in your template area. So if you are using Protean, go to Studio > Protean > Styles and there is a Fonts section there that has what font is being used as well as the "sizes" used for H1, H2, etc. 

              • font header sizes work the same way as paper sizes with A1 paper size being the biggest H1 is the biggest header size and H6 being smaller as header 6 H6 is smaller a H1 header is used for page headers but smaller headers like header H4 H5 or H6 is used for paragraph headers but you can use them in anyway you want i'm just stating how there used by default

                • Thank you. I knew they were to determine header size but it has not been clear to me which headers they control. Still a little fuzzy on that. I haven’t seen H4, 5, and 6 in a template. Just 1, 2, and 3. What do 2 and 3 control. I am all the time doing trial and error to try and figure it out. I wish we had a help section on this site that has common questions and answers.

                  • This goes back to printer terminology which was heading, then subheading, then sub-subheading converted to h1, h2, h3 but initially as in printing it was defined by size and boldness of the print. Then there was a need to tell search engines something besides showing bold font in various thicknesses. So as to sort the two messages, one to search engines and one to readers, the h tags were defined to talk to the search engines in terms of the what was the heading, what was the subheading and what was the sub-subheading, as compared to visually showing the viewer something.

                    The h tags should be considered as talking to search engines and not so much to inform the viewer. 

                    Another way to approach this is to consider if I bold just one word in a sentence. What am I trying to say to a viewer by doing that and what does the computer do with that in terms of querries from search engines?

                    So if I use the em tag (emphasis), the search engine gets a notation, that this is something I emphasize for some reason but the viewer may see that in a different way as some boldness in 300, 300, 500 or more.

                    I think to understand what they did, one has to know that they wanted to talk to the search engines and also convey the author’s stress to viewer but keeping the search engines properly informed.

                    For instance, you can put an h1 tag and that will come up to the viewer as just a large bold font but to the search engine that is the heading of the article or whatever. But if you add some CSS to that h1 tag, you can make it so that it is an elephant size of font and you could even remove all bold features from it, and still the search engines will regard it as heading because it is h1 but viewers will regard it differently because it was not bolded. They may only read it as an artistic type of font and not even bother to note that it is a heading.

                    Let us say that I have a heading and I bold it only and use just p tags (paragraph), then viewers will see that as bolded and may interpret it as the heading but the search engines will ignore that because it has a p and not an h tag.

                    This is clear when you use a program like Microsoft Word to compose text, where if you use a p tag, it will be regarded as ordinary text and then when you try to create a Table of Contents, using Word to compose that, your headings which were in a p tag will not show up, unless you open the paragraph dialog and change the p tag to an h tag, by telling the system in the outline level to change from Body Text to Level 1, Level 2 and so on.

                    It is reduced to making a decision as to what you want to say to the search engines and what you want to say to readers and knowing how to do that using the html tag system. It took me a while to get used to this. I got over 30 books now and had to figure this out at first using Microsoft Word and then converting plain text to html in preparation for making ePub files. It requires a new way of thinking about text or even images, where the intruder is the search engines. 

                    How to inform both the human viewer and the search engines (AI viewer) at the same time? That is the skill to acquire.

                    • well put Michael Beloved couldn't have put it better myself

                      Login or Join to comment.