HTML Formatting short quotations with q element Code For Website - Learn About Website | DaddyFile

0

HTML <q> for Short Quotations Explain

The HTML <q> element defines a short quotation.
Browsers usually insert quotation marks around the <q> element.



Html Code:

<!DOCTYPE html>
<html>
<body>

<p>Browsers usually insert quotation marks around the q element.</p>

<p>WWF's goal is to: <q>Build a future where people live in harmony with nature.</q></p>

</body>
</html>



Html Code Result:

Browsers usually insert quotation marks around the q element.
WWF's goal is to: Build a future where people live in harmony with nature.

Post a Comment

 
Top