Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<style>
body {
  font-family: Arial, Helvetica, sans-serif;
}
/* Dashed border */
hr.dashed {
  border-top: 3px dashed #bbb;
}
/* Dotted border */
hr.dotted {
  border-top: 3px dotted #bbb;
}
/* Solid border */
hr.solid {
  border-top: 3px solid #bbb;
}
/* Rounded border */
hr.rounded {
  border-top: 8px solid #bbb;
  border-radius: 5px;
}
</style>
</head>
<body>
<h2>Different type of Dividers</h2>
<p>Dashed</p>
<hr class="dashed">
<p>Dotted</p>
<hr class="dotted">
<p>Solid</p>
<hr class="solid">
<p>Rounded</p>
<hr class="rounded">