前端学习5
程序员文章站
2024-03-20 10:12:16
...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>前端学习5</title>
</head>
<body>
<h1>字体属性:</h1>
<p class=".cs1">font描述的是字体属性</p>
<p class="cd2">font-size表示字号(大小),单位px或者%</p>
<p class="cd3">font-family表示字体系列</p>
<p class="cd4">font-weight表示粗体</p>
<p class="cd5">font-style表示斜体</p>
</body>
<style>
.cs1{font: normal;}
.cd2{font-size: 24px;}
.cd3{font-family:Arial, Helvetica, sans-serif;}
.cd4{font-weight: bolder;}
.cd5{font-style: italic;}
</style>
</html>