The q tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The q tag defines a short quote, the browser inserts a pair of double quotes around the text to represent it as a quote.
When you want to quote a famous saying in your article, use the q tag to do so. It makes your website more professional.
Note the use of blockquote tags to mark citations from other sources.
Using
For example, use the q tag to mark the quote of Uncle Ho in the text.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h2>Tiến độ hoàn thiện các website</h2> <p> BÁC HỒ KHUYÊN THANH NIÊN: <q>Không có việc gì khó Chỉ sợ lòng không bền Đào núi và lấp biển Quyết chí ắt làm nên.</q> ... Việc gì cũng có thể làm được, miễn có sự kiên trì, ý chí quyết tâm, nghĩa là bền lòng. </p> </body> </html>