Google Fonts help

Hey gang, need help with a simple problem. I am trying to work with google fonts but can’t seem to get it to work, at least in codepen. Here is the example I’m working on, I’m trying to apply a google font to the h3 on this page. Any help would be appreciated, thanks! *Oops, might want to actually add the link :blush: https://codepen.io/MarcelPenn/pen/WEdBQb

You forgot the codepen link :wink:

Just noticed haha, it should be good now

You should wrap the Dancing Script in the CSS with quotes.

h2 {
  font-family: 'Dancing Script', cursive;
}

Also, it looks like Bootstrap overrides your custom fonts (it seems the stylesheets in the <link> tags are loaded after your custom CSS). Try moving the external stylesheets to the CSS settings, then remove the <link> tags in the HTML.

image

1 Like

This seems to have worked. Thanks a lot for your help!