It could be a good idea here to use span elements for your "price" texts. span are inline elements, meaning they can be on the same line as the rest of the paragraph description of the product.
<p> Made of the highest quality oak, ... <span class="price"> Starting at $3.00 / brush. </span> </p>
It could be a good idea here to use
span
elements for your "price" texts.span
are inline elements, meaning they can be on the same line as the rest of the paragraph description of the product.https://github.com/bartbaetens/prj-rev-bwfs-dasmoto/blob/master/Dasmotos/index.html#L19-L23