u Element
Description
The u
element marks text by adding underline.
Its style Convention:u { text-decoration:underline;}
.
The style convention for the u
element is similar to that for the a
element.
Example
The following code shows the u
element in use.
<!DOCTYPE HTML>
<html>
<body>
<u>HTML5</u> is good.
</body><!-- ww w. ja v a 2s . c om-->
</html>