I'm attempting to create two horizontal lines spanning a box. I tried using a plugin to generate the necessary code from a design, but the final output isn't optimized.
<h1 id="H1_1">
<span id="SPAN_2">Feedback</span>
</h1>
#H1_1 {
// CSS properties here
}
#H1_1:after {
// CSS properties for horizontal line
}
#SPAN_2 {
// CSS properties for text styling
}
Is there a simpler alternative method to achieve this effect using CSS?