a.字体系列
font-family:"Times New Roman", Times, serif;
b.字体样式
font-style:normal;正常 - 正常显示文本
font-style:italic;斜体 - 以斜体字显示的文字
font-style:oblique;倾斜的文字 - 文字向一边倾斜(和斜体非常类似,但不太支持)
c.字体大小
font-size:40px;
d.字体加粗
font-weight


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>字体</title>
<link rel="stylesheet" href="demo.css">
</head>
<body>
<p class="normal ">123asd你好吗文字信息文字信息文字信息文字信息文字信息文字信息文字信息文字信息文字信息文字信息</p>
<p class="italic ">123asd你好吗文字信息文字信息文字信息文字信息文字信息文字信息文字信息文字信息文字信息文字信息</p>
<p class="oblique">123asd你好吗文字信息文字信息文字信息文字信息文字信息文字信息文字信息文字信息文字信息文字信息</p>
</body>
</html>
/*字体系列*/
p {
font-family: "Times New Roman", Times, serif;
}

/*字体样式*/
/*正常*/
p.normal {
font-style: normal;
}

/*倾斜*/
p.italic {
font-style: italic;
}

/*倾斜*/
p.oblique {
font-style: oblique;
}

/*字体大小*/
p {
font-size: 20px;
}

/*字体加粗*/
p{
font-weight: bolder;
}