0

How can I include inline styling that functions like the <strong> or <u> tags?

<strong> strong text </strong><div style="color:rgb(160, 160, 160)"> inline styled text </div>

I would like this to show "strong text inline styled text" all on one line, where 'inline styled text' is colored with a light grey.

Temani Afif
  • 245,468
  • 26
  • 309
  • 415
doliphin
  • 752
  • 6
  • 22

1 Answers1

2

You could use a <span />

<strong> strong text </strong><span style="color:rgb(160, 160, 160)"> inline styled text </span>
Robbie Cook
  • 164
  • 1
  • 6