线条粗细: size=“数字” 例如:size=“8”
背景颜色: color=“颜色” 例如:color=“red”
水平线的长度:width=“数字” 例如:width=“500”
水平线的位置:align=“left|center|right” 例如:align=“center”
center居中 left靠左 right靠右
<html>
<head>
<title></title>
<meta http-equiv = "content-Type" content ="html/text;charset=utf-8">
</head>
<body>
<hr align="center" width = "1000" color = "red" size="4">
</body>
</html>