console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
p{
text-align: center;
font-size: 18px;
}
.b{
font-weight: bold;
}
.p1{
font-family: "楷体";
font-size: 30px;
}
p.p1{
text-decoration-line: underline;
font-size: 20px;
}
.p2{
font-family: "宋体";
font-size: 22px;
}
</style>
</head>
<body>
<h1 align="center" class="p1">无题</h1>
<p>相见时难别亦难,东风无力百花残。</p>
<p class="p1">春蝉到死丝方尽,蜡炬成灰泪始干。</p>
<p class="p2">晓镜但愁云鬓改,夜吟应觉月光寒。</p>
<p class="p2 b">蓬山此去无多路,青鸟殷勤为探看。</p>
</body>
</html>