The <hr /> tag can be repeated with different "size"
and "width" attributes for special effects.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Welcome to HTML</title>
</head>
<body bgcolor="#bdbdbd" text="black">
<center>
<hr width="200" size="2" />
<hr width="250" size="4" />
<hr width="300" size="6" />
<h2>Welcome to the world of HTML!</h2>
<hr width="300" size="6" />
<hr width="250" size="4" />
<hr width="200" size="2" />
</center>
</body>
</html>
|