1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
<h1>Test inline Elements</h1>
<h2>Emphasis</h2>
<p>This one is <em>emphasized</em> with <code>*</code>. This one is <strong>strongly emphasized</strong> with <code>__</code>.
This one has its delimiter <em>e*s*c*a*p*e*d</em> as content. This is a free *
asterisk and a free _ underscore. This is a <strong>strong one</strong>.</p>
<h2>Links</h2>
<p>Use <a href="http://www.google.de" title="Google Homepage">Google</a> and <a href="http://www.yahoo.com">Yahoo</a> for search and read <a href="http://slashdot.org" title="News for Nerds">News for Nerds</a> and
<a href="http://news.ycombinator.com" title="Hacker News">Hacker News</a>. Watch videos at <a href="http://www.youtube.com" title="Youtube">Youtube</a>.
<a href="http://slashdot.org" title="News for Nerds">News for Nerds</a>.</p>
<p>Unknown ref: [bla][foo]</p>
<h2>Code</h2>
<p>An XML declaration looks like this: <code><?xml version="1.0" encoding="utf-8"?></code>.
The <code>printf()</code> function is used for printing to the screen. Show a single
<code>`</code>.</p>
<h2>Images</h2>
<p>Here comes an inline graphic <img src="/path/to/some.jpg" alt="Inline Image" title="Inline
title"/>. Here comes a reference <img src="/path/to/some.png" alt="Ref Image" title="Ref image title"/>.</p>
<h2>Entities</h2>
<p>Here is a copyright symbol: ©. AT&T operator talk. 4 < 5 or 5 > 4.</p>
<h2>Automatic Links</h2>
<p>Write to <a href="mailto:me@example.com">me@example.com</a> and visit <a href="http://www.example.com">http://www.example.com</a>.
This is an auto-link with ampersand: <a href="http://example.com/?foo=1&bar=2">http://example.com/?foo=1&bar=2</a>.</p>
<h2>Inline HTML</h2>
<p>Here is some text <b>in bold</b>. An image tag <img src="nonexist.jpg" alt="no
such file"/>. And here comes a table:</p>
<table style="border: 1px solid black; border-collapse: collapse">
<tr>
<td style="border-right: 1px solid red;"><b>Column A</b></td><td><b>Column B</b></td>
</tr>
</table>
<p>Here comes some text. Here comes some text. Here comes some text. Here
comes some text. Here comes some text. Here comes some text. Here comes
some text.</p>
<p>Here is an inline email link with mailto: <a href="mailto:max@example.com">max@example.com</a>. And
here is an inline email link without mailto: <a href="mailto:max@example.com">max@example.com</a>. This is
not a valid email link <something@> neither is this <@example.com>.</p>
|