CSS
1.html
<html>
<head>
<title>MyHtml.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="style/1.css">
</head>
<body>
<p id="dd">This is my HTML page. </p>
<p class="qq">This is my HTML page. </p>
<p>This is my HTML page. </p>
<p class="qq">This is my HTML page. </p>
</body>
</html>
1.css
@CHARSET "UTF-8";
p{
color: red;
font-size: 50px;
font-weight: bold;
}