HTML <u> tag
Html <u> tag: Definition
• HTML <u> tag is used to underline the text, words, paragraph or a section enclosed within the <u> tag.
• This element must be enclosed with begining tag <u> and closing tag tag</u>.
Html <u> tag example
<!DOCTYPE html> <html> <head> <title>HTML u tag example</title> </head> <body> <video controls="controls" width="500px" height="400px"> <source src="try_it/media/tiger-roar.mp4" type="video/mp4"/> <u src="try_it/media/tiger-roar.mp4" kind="subtitles" srclang="en" label="English"/> <p>Your browser does not support the <video> tag.</p> </video> </body> <html>