Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML u tag</title> </head> <body> <p>Here is some <u>underlined text</u>.</p> <h2>Alternative</h2> <p>Here is some <span style="text-decoration:underline;">underlined text</span>.</p> <p><strong>Note:</strong> To learn more about style rules please study tutorials on <a href="#">CSS</a>.</p> </body> </html>