日期:2014-05-17 浏览次数:20693 次
<html>
<head>
<title>编写外部CSS文件</title>
<link rel="stylesheet" type="text/css" href="3.css">
</head>
<body>
<h3 align="center">编写外部CSS文件</h3>
<hr/>
<p>在HTML文件应用链入外部样式表方法调用外部CSS。</p>
</body>
</html>
<style type="text/css">
<!--
h3 {font-family:黑体;font-size:25px;color:black}
p {background:orange;font-family:隶书;font-size:25px;color:blue}
-->
</style>
<style type="text/css">
<!--//这个注释的意思就是支持的浏览器就显示,不支持的就略过.
h3 {font-family:黑体;font-size:25px;color:black}
p {background:orange;font-family:隶书;font-size:25px;color:blue}
-->
</style>