Introduction
The <u> tag represents some text that is unarticulated and styled differently from normal text. Historically, it has been used to underline text on web pages.
Here is an example :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
ul {
list-style-type: square;
}
</style>
</head>
<body>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Corrupti, impedit. <u>Incidunt reprehenderit maiores</u> neque quas asperiores adipisci quidem, labore nobis <u>saepe officiis optio</u> cupiditate quo ipsa provident vel sit minima?</p>
</body>
</html>
Output :
The text written under the <u> tag is display with underline.