10.html文件
<html>
<head>
<link href="10.css" rel="stylesheet" type="text/css">
</head>
<body>
<span class="style1">新闻一</span><br/>
<span class="style1">新闻二</span><br/>
<span class="style1">新闻三</span><br/>
<span class="style1">新闻四</span><br/>
</body>
</html>
10.css文件
<style>
.style1{
font-size:20px;
color:red;
font-weight:bold;
font-style:normal;
text-decoration:underline;
}
</style>