How to display a URL which explains the 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