html5&css&js代码 034 自定义字体
在HTML5中,您可以使用@font-face
规则来定义自定义字体。首先,您需要有字体文件,常见的格式包括.ttf
(TrueType Font)、.otf
(OpenType Font)、.woff
(Web Open Font Format)或.svg
(Scalable Vector Graphics Font)。
以下是一个简单的HTML和CSS示例,展示如何使用自定义字体:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Custom Font Example</title>
<style>
@font-face {
font-family: 'MyCustomFont';
src: url('mycustomfont.woff') format('woff');
}
body {
font-family: 'MyCustomFont', Arial, sans-serif;
}
</style>
</head>
<body>
<h1>这是自定义字体的示例文本</h1>
</body>
</html>
在这个例子中,@font-face
规则定义了一个名为MyCustomFont
的自定义字体,并指定了字体文件的位置。然后在body
选择器中将自定义字体设置为首选字体,并且指定了备用字体。当浏览器不支持自定义字体时,会回退到Arial或sans-serif字体。
请确保将mycustomfont.woff
替换为您的自定义字体文件的实际路径和文件名。
评论已关闭