To display a quote using the blockquote


Q. Write an HTML program to display a quote using the <blockquote> and <cite> tags.

<!DOCTYPE html>
<html>
<head>
<title>Quote Example</title>
</head>
<body>
  <h3>Famous Quote</h3>
  <blockquote cite="https://en.wikipedia.org/wiki/Albert_Einstein">
    "Imagination is more important than knowledge."
  </blockquote>
  <cite>— Albert Einstein</cite>
</body>
</html> 



OnlineTpoint is a website that is meant to offer basic knowledge, practice and learning materials. Though all the examples have been tested and verified, we cannot ensure the correctness or completeness of all the information on our website. All contents published on this website are subject to copyright and are owned by OnlineTpoint. By using this website, you agree that you have read and understood our Terms of Use, Cookie Policy and Privacy Policy.