For my report, I need to create multiple lines with automated dashes without having to use the SHIFT plus underscore keyboard shortcut. I searched for a solution but couldn't find anything that addressed my specific issue.
I envision something like this format:
Line 1: _____________
Line 2: _____________
Line 3: _____________
Line 4: _____________
I attempted various approaches using the <hr>
tag, but none of them produced the desired result.
<p>Line 1: <hr align="right" width="200"></p>
<p>Line 2: <hr align="right" width="200"></p>
<p>Line 3: <hr align="right" width="200"></p>
<p>Line 4: <hr align="right" width="200"></p>
The output showed that the line extended too far to the right and did not align neatly with the text.
Is there a way to bring the line closer to the words, similar to the desired model?