<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Html和css的关系</title>
<style type="text/css">
h1{
font-size:12px;(改变字体大小)
color:#930;(改变字体颜色)
text-align:center;(使文字居中)
}
</style>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Html和css的关系</title>
<style type="text/css">
h1{
font-size:12px;(改变字体大小)
color:#930;(改变字体颜色)
text-align:center;(使文字居中)
}
</style>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>