
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
Display a URL Explaining Quote Deleted/Inserted Text in HTML
The cite attribute allows you to add URL and explain why the text was deleted or inserted.
Example
You can try to run the following code to implement cite attribute −
<!DOCTYPE html> <html> <body> <h3>Define WordPress</h3> <q cite = "https://wordpress.org/"> WordPress is open source software you can use to create a beautiful website, blog, or app.</q> </body> </html>
Advertisements