View Single Post
Old 06-20-2017, 08:53 AM   #4
GrannyGrump
Obsessively Dedicated...
GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.
 
GrannyGrump's Avatar
 
Posts: 3,231
Karma: 35158061
Join Date: May 2011
Location: PA {back in the usa!}
Device: Sony PRS-T2, ADE on PC
Try using <hr /> (horizontal rule) for simple straight lines.

You can style it in the CSS stylesheet to be any thickness you like, or a double line, etc, etc.

In the stylesheet, something like:
Code:
hr 
{border-top: 1pt solid; margin-top: .5em; margin-bottom: .5em}
or
Code:
hr
{border-top: 4pt double; margin-top: .5em; margin-bottom: .5em}
}

The greater the number of "points" (1pt, 4pt, 10pt), the thicker the line.

Then in the HTML, you could put something like this:

Code:
<h2>CHAPTER ONE</h2>
<hr />
W3schools have very helpful tutorials to learn about html and css.
for instance, a quick "try it yourself" tutorial on horizontal rules can be found here: https://www.w3schools.com/tags/tryit...hr_default_css


And JSWolf is correct in pointing out that the fancy swirly decorated lines are usually pictures.
Attached Thumbnails
Click image for larger version

Name:	hrSingle.png
Views:	423
Size:	14.4 KB
ID:	157427   Click image for larger version

Name:	hrDouble.png
Views:	417
Size:	13.9 KB
ID:	157428   Click image for larger version

Name:	hrPicture.png
Views:	413
Size:	16.3 KB
ID:	157429  
GrannyGrump is offline   Reply With Quote