<!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 {
color: red;
}
.spec {
font-style: italic;
}
#para {
text-decoration: underline;
}
</style>
</head>
<body>
<p id="para" class="spec">我是段落</p>
</body>
</html>