ZVON > References > [XHTML Basic] Reference
Text Module > element p

Go to Standard
Element: p
Attributes: | class | id | title | xml:lang |
Parents: | blockquote | body | dd | div | form | li | object | td | th |
Children: | #PCDATA | a | abbr | acronym | br | cite | code | dfn | em | img | input | kbd | label | object | q | samp | select | span | strong | textarea | var |

Your browser display:

WWW abbr.

radar

Source [  Open as XHTML document  ]

<p>
     <abbr title="World Wide Web">WWW</abbr>
     <abbr title="Abbreviation">abbr.</abbr>
</p>
<p>
     <acronym>radar</acronym>
</p>

Your browser display:

They went in single file, running like hounds on a strong scent, and an eager light was in their eyes. Nearly due west the broad swath of the marching Orcs tramped its ugly slot; the sweet grass of Rohan had been bruised and blackened as they passed.

Source [  Open as XHTML document  ]

<blockquote cite="http://www.mycom.com/tolkien/twotowers.html">
     <p>They went in single file, running like hounds on a strong scent, and an eager light was in their eyes. Nearly due west the broad swath of the marching Orcs tramped its ugly slot; the sweet grass of Rohan had been bruised and blackened as they passed.</p>
</blockquote>

Your browser display:

John said, I saw Lucy at lunch, she told me Mary wants you to get some ice cream on your way home. I think I will get some at Ben and Jerry's, on Gloucester Road.

Source [  Open as XHTML document  ]

<p> John said,
     <q>I saw Lucy at lunch, she told me
          <q>Mary wants you to get some ice cream on your way home.</q> I think I will get some at Ben and Jerry's, on Gloucester Road.
     </q>
</p>

Your browser display:

A statue of the Cihuateteus, who are patron ...

Source [  Open as XHTML document  ]

<p> A statue of the
     <a href="cih78">Cihuateteus</a>, who are patron ...
</p>

Your browser display:

...some text...

You'll find a lot more in chapter two. See also this map of the enchanted forest.

Source [  Open as XHTML document  ]

<p>
     <em>...some text...</em>
</p>
<p>You'll find a lot more in
     <a href="chapter2.html">chapter two</a>. See also this
     <a href="../images/forest.gif">map of the enchanted forest.</a>
</p>

Your browser display:

...some text...

You'll find a lot more in chapter two. chapter two. See also this map of the enchanted forest.

Source [  Open as XHTML document  ]

<p>
     <em>...some text...</em>
</p>
<p>You'll find a lot more in
     <a href="chapter2.html" title="Go to chapter two">chapter two</a>.
     <a href="./chapter2.html" title="Get chapter two.">chapter two</a>. See also this
     <a href="../images/forest.gif" title="GIF image of enchanted forest">map of the enchanted forest.</a>
</p>

Your browser display:

Zvon logo:

GIF: Zvon.org - GIF

PNG: Zvon.org - PNG

JPG: Zvon.org - JPG

Source [  Open as XHTML document  ]

<h3>Zvon logo:</h3>
<p>GIF:
     <img src="Pictures/zvon.gif" alt="Zvon.org - GIF"/>
</p>
<p>PNG:
     <img src="Pictures/zvon.png" alt="Zvon.org - PNG"/>
</p>
<p>JPG:
     <img src="Pictures/zvon.png" alt="Zvon.org - JPG" longdesc="http://zvon.org"/>
</p>

Your browser display:





Source [  Open as XHTML document  ]

<form method="post" action="http://www.zvon.org/cgi-bin/forms/bin/searchReference.py">
     <p>
          <input size="20" name="value"/>
          <input type="submit" value=" Search "/>
     </p>
     <p>
          <input type="radio" name="select" value="Glossary" checked="checked" id="Glossary"/>
          <label for="Glossary">XML Glossary</label>
          <br/>
          <input type="radio" name="select" value="Namespaces" id="Namespaces"/>
          <label for="Namespaces">XML Namespaces</label>
          <br/>
          <input type="radio" name="select" value="XSLT" id="XSLT"/>
          <label for="XSLT">XSLT Reference</label>
          <br/>
          <input type="radio" name="select" value="RE" id="RE"/>
          <label for="RE">Regular Expressions</label>
          <br/>
          <input type="radio" name="select" value="CSS1" id="CSS1"/>
          <label for="CSS1">CSS1 Reference</label>
     </p>
</form>

Your browser display:

Press "C" to go to the Zvon site

Source [  Open as XHTML document  ]

<p>
     <a accesskey="C" rel="contents" href="http://zvon.org">Press "C" to go to the Zvon site</a>
</p>

Your browser display:

If called with: John

Program:


#!/usr/bin/python
import sys

print "Hello " + sys.argv[1] + "!"

Outputs: Hello John!

Source [  Open as XHTML document  ]

<p>If called with:
     <kbd>John</kbd>
</p>
<h3>Program:</h3>
<pre>

     <code> #!/usr/bin/python import sys print "Hello " +
          <var>sys.argv[1]</var> + "!"
     </code>

</pre>
<p>Outputs:
     <samp> Hello John! </samp>
</p>