字体系统之字体粗细(CSS、HTML)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>字体系统之字体粗细</title>
<style>
.bold {
/* font-weight: bold;*/
/* 700的后面不要跟单位,它等价于bold */
font-weight: 700;
}
h2 {
font-weight: 400;
/* font-weight: number;z这两句话是等价的 */
}
</style>
</head>
<body>
<h2>震惊!某市某少年身价亿万</h2>
<p class="bold">经过相关调查</p>
<p>x市---未来的科技巨头</p>
</body>
</html>