Home >Web Front-end >HTML Tutorial >How to specify quotes in HTML?
Use the tag in HTML to specify references. A citation can be defined as the title of a work. You can try running the following code to implement the tag for adding references -
<!DOCTYPE html> <html> <head> <title>HTML cite Tag</title> </head> <body> <p>The learning content can be referred from <cite>Data Structures & Algorithms in Java</cite><p> </body> </html>
The above is the detailed content of How to specify quotes in HTML?. For more information, please follow other related articles on the PHP Chinese website!