The u tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The u tag defines a piece of text that should be displayed differently from normal text such as a misspelled word or Chinese noun.
Text wrapped by the u tag will be displayed as underlined when displayed outside the browser.
Using
For example , use the u tag to highlight misspelled text.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h1>Học html miễn phí tại web888.vn</h1> <p> Từ đúng chính tả: xem xét </p> <p> Từ sai chính tả: <u>xem sét</u>, <u>sem sét</u>, <u>sem xét</u>. </p> </body> </html>