<u> HTML Tag

In this article we will discuss about how to use the underline tag in HTML.
  • 2366

<u> tag stands for underline. By using it we can underline a text if we want. It is used to show the text differently from other text in the document by using underline tag.

HTML Code:

<html>

<head>

    <title></title>

</head>

<body>

    <u>Amit</u> is a <u>good</u> boy.<br>

    <br>

    <u>Isha</u> is a <u>Good</u> girl.<br>

    <br>

    <u>Mohan</u> is a <u>brave</u> boy.<br>

    <br>

    <u>Vishakha</u> is a <u>intelligent</u> girl.

</body>

</html>

Output:

Amit is a good boy.

Isha is a Good girl.

Mohan is a brave boy.

Vishakha is a intelligent girl.

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.