<html>
<head>
<title>div+css内部样式</title>
<style>
#a font,#c font{
color:green;
font-family:楷体;
font-size:80px;
}
.b font{
color:pink;
font-family:隶书;
font-size:80px;
}
</style>
</head>
<body>
<div id="a">
<font>河北</font><hr/>
</div>
<div class="b">
<font>供热</font><hr/>
</div>
<div id="c">
<font>和人</font><hr/>
<font>供热</font><hr/>
</div>
</body>
</html>
<head>
<title>div+css内部样式</title>
<style>
#a font,#c font{
color:green;
font-family:楷体;
font-size:80px;
}
.b font{
color:pink;
font-family:隶书;
font-size:80px;
}
</style>
</head>
<body>
<div id="a">
<font>河北</font><hr/>
</div>
<div class="b">
<font>供热</font><hr/>
</div>
<div id="c">
<font>和人</font><hr/>
<font>供热</font><hr/>
</div>
</body>
</html>