Skip to main content

Quotations

Quotations | HTML: Quotations gives special meaning to normal text.

List of Quotations:

  1. blockquote
  2. quote
  3. abbreviation
  4. bi-directional override
  5. citation
  6. address

Here is the quotations.html:

  1.   <!DOCTYPE html>
  2.   <html lang="en" dir="ltr">
  3.     <head>
  4.       <link rel="stylesheet" href="css/stylesheet.css">
  5.       <title>Quotations in Html</title>
  6.     </head>
  7.     <body>
  8.       <p>Here is the blockquote:</p>
  9.       <blockquote cite="https://en.wikipedia.org/wiki/World_Health_Organization">
  10.         To provide leadership, strengthen governance
  11.         and foster partnership and collaboration with countries,
  12.         the United Nations system,
  13.         and other stakeholders in order to fulfill the mandate of
  14.         WHO in advancing the global health agenda.
  15.       </blockquote>.
  16.       <p>Here is the
  17.         <q>Build a future where people live in harmony with nature.</q></p>
  18.       <p>Here is the <abbr title="World Health Organization">WHO</abbr></p>
  19.       <p><bdo dir="rtl">love is the best medicine</bdo></p>
  20.       <p><cite>Learning</cite> is the Educational path.</p>
  21.         <address>
  22.         Name :<br>
  23.         H.no :<br>
  24.         Mail :<br>
  25.         County :<br>
  26.       </address>
  27.     </body>
  28.   </html>

Web view of Html:



Here is the Video: