Forum Moderators: open
You will have to adjust width if you want it wider or narrower.
<html>
<body>
<style>
#lefthr {
position: absolute;
left: 0px;
top 10px;
width: 400px;
}
#righthr {
position: absolute;
left: 400px;
top 10px;
width: 400px;
}
</style>
<div id="lefthr"><hr></div>
<div id="righthr"><hr></div>
</body>
</html>