Home  >  Article  >  Web Front-end  >  Describe fonts used in CSS documents

Describe fonts used in CSS documents

王林
王林forward
2023-08-28 21:01:091226browse

描述 CSS 文档中使用的字体

To describe a font, use the @font-face rule. You can try running the following code to set the font -

Example

<style>
   <!--
      @font-face {
         font-family: "Scarborough Light";
         src: url("http://www.font.site/s/scarbo-lt");
      }

      @font-face {
         font-family: Santiago;
         src: local ("Santiago"),
         url("http://www.font.site/s/santiago.tt")
         format("truetype");
         unicode-range: U+??,U+100-220;
         font-size: all;
         font-family: sans-serif;
      }
   -->
</style>

The above is the detailed content of Describe fonts used in CSS documents. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete
Previous article:CSS3 rgba color propertyNext article:CSS3 rgba color property