Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Origin Super Condensed vs CSS

Engaged ,
May 09, 2022 May 09, 2022

How do I make a heading (e.g. h1) display with the font family Origin Super Condensed in WordPress?

To display Georgia, I just wrote "font-family: Georgia;". However, "font-family: Chandler 42" doesn't work. I had to write "font-family: chandler-42-regular"

However, none of these work:

font-family: Origin Super Condensed

font-family: origin-super-condensed

font-family: origin-super-condensed-regular

font-family: origin-super-condensed-400

395
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , May 10, 2022 May 10, 2022

Hm, you're supposed to use "origin-super-condensed" as per the Details section:

 

In CSS, it should look like this:

  • h1 {
         font-family: origin-super-condensed, sans-serif;
    }
Translate
Community Expert ,
May 10, 2022 May 10, 2022

Hm, you're supposed to use "origin-super-condensed" as per the Details section:

 

In CSS, it should look like this:

  • h1 {
         font-family: origin-super-condensed, sans-serif;
    }
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
May 10, 2022 May 10, 2022
LATEST

OK, it's working now. I'm not sure what the problelm was.

 

Thanks.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines