I need to draw a horizontal line after some block, and I have three ways to do it:
1) Define a class h_line and add css features to it, like
h_line
<
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
Hello World