- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do we create underlined text in HTML?
The HTML <u> tag is used to underline a text. You can try to run the following code to create underlined text in HTML −
Note − This tag is deprecated now and should not be used. Use CSS instead.
Example
<!DOCTYPE html> <html> <head> <title>HTML u Tag</title> </head> <body> <u>Qries.com</u> is the next generation knowledge management system. </body> </html>
Advertisements