CSS字体系列(CSS、HTML)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS字体系列</title>
<style>
h2 {
font-family: "隶书";
}
p {
font-family: "华文中宋";
}
</style>
</head>
<body>
<h2>震惊!某市某少年身价亿万</h2>
<p>经过相关调查</p>
<p>x市居然隐藏着这么一位少年</p>
<p>据说有可能成为未来的科技巨头</p>
</body>
</html>