Instead you'll want to add a selector to your CSS to style the <strong> elements, like this:
strong {
color: blue;
}
This will also help your markup and CSS to be more modular by avoiding inline styles. Also, great choice with the <strong> element here, this is the perfect use case for this element.
Simplify! Do not use the
<font>
element as it's becoming obsolete, see here: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fontInstead you'll want to add a selector to your CSS to style the
<strong>
elements, like this:This will also help your markup and CSS to be more modular by avoiding inline styles. Also, great choice with the
<strong>
element here, this is the perfect use case for this element.https://github.com/jjctabares/prj-rev-bwfs-dasmoto/blob/master/Dasmoto/index.html#L16 https://github.com/jjctabares/prj-rev-bwfs-dasmoto/blob/master/Dasmoto/index.html#L22 https://github.com/jjctabares/prj-rev-bwfs-dasmoto/blob/master/Dasmoto/index.html#L29