Working titles can be those of books, songs, paintings, movies, etc.
We use the tag to mark the working title in HTML. The tag represents a citation, and the content within the tag represents the working title of the specified thing on the web page.
Following is the syntax for the tag.
<cite> Work title</cite>
The following is a sample program for the tag.
<!DOCTYPE html> <html> <head> <title>HTML cite tag</title> </head> <body> <h1>Heading</h1> <p> Learn Java from <cite>Java The Complete Reference</cite> by Herbert Schildt. </p> </body> </html>
Following is another example program for the tag.
<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for <cite>Delhi Land and Finance</cite></p> <p>Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>
The following is another example program for the tag.
<!DOCTYPE html> <html> <head> <title>HTML blockquote tag</title> <style> blockquote { margin-left: 0; } </style> </head> <body> <h1>Drupal official website</h1> <p>Here is a quotation from Drupal’s official website</p> <blockquote cite="http://drupal.org">The Drupal project is open source software. Anyone can download, use, work on, and share it with others. It's built on principles like collaboration, globalism, and innovation.</blockquote> </body> </html>
The above is the detailed content of How to mark working title using quote tag in HTML?. For more information, please follow other related articles on the PHP Chinese website!