Why use <u> ?
When we need to underline inside a paragraph tag or other tags. Then used <u> .
Syntax:
<p>
Hay hello web <u>developer</u> !!!.
</p>
Example:
<!DOCTYPE html>
<html >
<head>
<title>Basic get in </title>
</head>
<body>
<p>
Hay hello web <u>developer</u> !!!.
</p>
</body>
</html>
Output:
Post a Comment