CSS引用外部字体

//引入静态字体文件 .tff文件

@font-face {font-family: DIN_Condensed_Bold;src: url('../font/DIN_Condensed_Bold.ttf');}

//定义class

.myfont1{ font-family:DIN_Condensed_Bold;}

@font-face {font-family: DINPro-Regular;src: url('../font/DINPro-Regular.otf');}

.myfont2{ font-family:DINPro-Regular;}

@font-face {font-family: Futurak;src: url('../font/Futurak.ttf');}

.myfont3{ font-family:Futurak;

你可能感兴趣的:(CSS引用外部字体)