使用CSS引用外部TTF字体
在CSS中,要使用外部的TTF(TrueType Font)字体,你需要先通过@font-face
规则声明字体源,然后就可以在页面中通过font-family
属性使用该字体。以下是一个简单的示例:
- 首先,确保你的TTF字体文件放置在服务器的可访问目录下。
- 创建一个CSS文件,并使用
@font-face
规则引入字体。
@font-face {
font-family: 'MyCustomFont';
src: url('https://www.yourserver.com/fonts/mycustomfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'MyCustomFont', Arial, sans-serif;
}
- 在HTML文件中链接这个CSS文件:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Custom Font Example</title>
<link rel="stylesheet" href="path/to/your/stylesheet.css">
</head>
<body>
<p>This text will use the custom font if it is available.</p>
</body>
</html>
确保替换https://www.yourserver.com/fonts/mycustomfont.ttf
为你的字体文件实际的URL路径。这样,当页面加载时,字体将被下载并使用在包含font-family: 'MyCustomFont'
的任何元素上。
评论已关闭