Core HTML

Quotations

Quotations can be written with either quotation characters or quotation elements via <q> tags. When we use elements, we give the document an implicit understanding of the content that is quoted. This allows the browser to correctly put single quote marks around inner quotes. Additionally, large quotations can be rendered via the block quote element via <blockquote> tags.

Quotations.html

<!DOCTYPE html>
<html>
  <head>
    <title>XoaX.net's HTML: Table Example</title>
  </head>
  <body>
    <h1>Simple Quotations</h1>
    <h3>Using Quotation Characters</h3>
    <p>In chapter 7 of the Book of Wisdom, Solomon humbly describes himself as being ordinary: As
    translated in the Revised Standard Version Catholic Edition (RSVCE), he begins in verse 1 by
    declaring "I also am mortal" and continues "like all men."</p>
    <h3>Using Quotation Elements</h3>
    <p>In chapter 7 of the Book of Wisdom, Solomon humbly describes himself as being ordinary: As
    translated in the Revised Standard Version Catholic Edition (RSVCE), he begins in verse 1 by
    declaring <q>I also am mortal</q> and continues <q>like all men.</q></p>

    <h1>Nested Quotations</h1>
    <h3>Using Quotation Characters</h3>
    <p>According to the Revised Standard Version Catholic Edition (RSVCE), in chapter 14 verse 23 of
    the Book of Genesis, Abram declares that he will take nothing from the King of Sodom: "I would
    not take ... anything that is yours, lest you should say, 'I have made Abram rich.'"</p>
    <h3>Using Quotation Elements</h3>
    <p>According to the Revised Standard Version Catholic Edition (RSVCE), in chapter 14 verse 23 of
    the Book of Genesis, Abram declares that he will take nothing from the King of Sodom: <q>I would
    not take ... anything that is yours, lest you should say, <q>I have made Abram rich.</q></q></p>

    <h1>Block Quotations</h1>
    <h3>Using Quotation Characters</h3>
    <p>According to the Revised Standard Version Catholic Edition (RSVCE), in chapter 14 verses 21
    through 24 of the Book of Genesis, Abram and the king of Sodom have this exchange</p>
    <blockquote>And the king of Sodom said to Abram, "Give me the persons, but take the goods for
    yourself." But Abram said to the king of Sodom, "I have sworn to the Lord God Most High, maker
    of heaven and earth, that I would not take a thread or a sandal-thong or anything that is yours,
    lest you should say, 'I have made Abram rich.' I will take nothing but what the young men have
    eaten, and the share of the men who went with me; let Aner, Eshcol, and Mamre take their
    share."</blockquote>
    <h3>Using Quotation Elements</h3>
    <p>According to the Revised Standard Version Catholic Edition (RSVCE), in chapter 14 verses 21
    through 24 of the Book of Genesis, Abram and the king of Sodom have this exchange</p>
    <blockquote>And the king of Sodom said to Abram, <q>Give me the persons, but take the goods for
    yourself.</q> But Abram said to the king of Sodom, <q>I have sworn to the Lord God Most High,
    maker of heaven and earth, that I would not take a thread or a sandal-thong or anything that is
    yours, lest you should say, <q>I have made Abram rich.</q> I will take nothing but what the
    young men have eaten, and the share of the men who went with me; let Aner, Eshcol, and Mamre
    take their share.</q></blockquote>
  </body>
</html>
 

Output

 
 

© 2007–2024 XoaX.net LLC. All rights reserved.