如何使用添加到 <head> 部分的样式信息对 HTML 进行格式化
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Content-Language" content="zh-cn" />
</head>
<head>
<style type="text/css">
h1 {color: red}
h3 {color: blue}
</style>
</head>
<body>
<h1>这是 header 1</h1>
<h3>这是 header 3</h3>
</body>
</html>
这是 header 1
这是 header 3
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Content-Language" content="zh-cn" />
</head>
<body>
<a href="/index.html" style="text-decoration:none">
这是一个链接!
</a>
这是一个链接!