
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Underline Text with CSS
Use the text-decoration property to underline text with CSS. You can try to run the following code to underline text:
<html> <head> </head> <body> <p style = "text-decoration:underline;"> India </p> </body> </html>
Advertisements