0
段落のフォントを特定のフォントに変更する必要があります。私のフォントはttfファイルにあります。また、すべてがローカルです(Webサイトのフォルダにダウンロードされます)。ここに私のコードは次のとおりです。段落のフォントを特定のフォントに変更する方法
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Unwritten</title>
<link rel="icon" href="cloak.png">
<style>
body {
margin-bottom: 200%;
background-image: url("site.png");
background-repeat: no-repeat;
background-size: cover;
}
#download_button {
position:absolute;
transition: .5s ease;
top: 50%;
left: 50%;
background-color: transparent;
background-repeat:no-repeat;
border: none;
cursor:pointer;
overflow: hidden;
outline:none;
font: "font.ttf";
}
</style>
</head>
<body>
<header>
<p class="buttons">This is in a font.<p>
</header>
<section>
</section>
<footer>
</footer>
</body>
.buttons {フォント-family:yourFont;} – sol