3

I'm very inexperienced on working with CSS and HTML. I'm building an website and I'd like to use Century Gothic font - but I don't know how to "import it".

How can I do it?

JohnnyPire
  • 79
  • 1
  • 1
  • 5

1 Answers1

9

If you're specifically looking for the Century Gothic font then one option would be to use Adobe's hosted version of it in the following link tag. If you're looking to import other fonts then reference this link.

html { 
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
}
<html>
<head>
  <link rel="stylesheet" href="https://use.typekit.net/oov2wcw.css">
</head>
  This is Century Gothic
</html>
Painguin
  • 1,027
  • 14
  • 26
  • The user clearly said _but I don't know how to "import it"._ he/she needs to import it. These are system fonts. You should import them first and then use them – weegee Apr 30 '19 at 17:51