jjctabares / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

<font> element #3

Open aubreywullschleger opened 7 years ago

aubreywullschleger commented 7 years ago

Simplify! Do not use the <font> element as it's becoming obsolete, see here: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/font

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.

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

jjctabares commented 7 years ago

noted, and css selector added