In HTML you can set your own shortcut keys in a form:
<label accesskey="n">name</label>
But, how would be the preferred form to display the "n" to make the user notice that this letter is the shortcut? The old convention is to display it underlined, which in HTML should be like this:
<label accesskey="n"><u>n</u>ame</label>
... but since <u>
tags are discouraged in HTML5, is there a standard (or conventional) form to display this kind of shortcut characters in a HTML page?
P.S.: I know I can set a specific style through something like <span class="mystyle">n</span>
, but I'm asking for an easier solution - preferrably some specific HTML tag.