HTMLのstyle属性でtext-decoration: underlineを指定するには
HTMLのstyle属性でtext-decoration: underlineを指定するには、以下のようにします:
<span style="text-decoration: underline;">テキスト</span>
上記の例では、span要素を使用してテキストを囲み、style属性にtext-decoration: underline;を指定しています。text-decorationプロパティは、テキストの装飾を指定するために使用されます。underline値は、テキストに下線を付けるために使用されます。
もちろん、span要素以外の要素にもstyle属性を追加してtext-decoration: underline;を指定することができます。適切な要素を選択して使用してください。