HTML Text Formatting Tutorial - Underline Text
Description:
How to underline text in an html page.
Code:
<html>
<body>
This is normal text.
<u>This is underlined text.</u>
This is normal and <u>this is underlined</u> text.
</body>
</html>
Play with the code:
See working example:
Explanation:
To make underlined text in an html page, you just have to surround the text you want underlined in the <u></u> tags.
See Also:
HTML: Html, Body, U
|