1
0
Fork 0
This commit is contained in:
Moritz »mo.« Sauer 2014-08-17 23:56:33 +02:00
parent 8f71b1e9a6
commit 2cbd5d7fd2

View file

@ -349,23 +349,29 @@
<p>Here youll find the <a href="https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5/HTML5_element_list">complete list of HTML5-Tags</a> and this is how they look like.</p>
<h3 id="lth1gtlth2gtlth3gtlth4gtlth5gtlth6gt">&lt;h1&gt;,&lt;h2&gt;,&lt;h3&gt;,&lt;h4&gt;,&lt;h5&gt;,&lt;h6&gt;</h3>
<h3 id="ltpgt">&lt;p&gt;</h3>
<h3 id="paragraphs-with-lots-of-text-ltpgt">Paragraphs with lots of Text  &lt;p&gt;</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
<h3 id="lthrgt">&lt;hr&gt;</h3>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<h3 id="horizontal-lines--lthrgt">Horizontal Lines &lt;hr&gt;</h3>
<hr />
<h3 id="ltpregt">&lt;pre&gt;</h3>
<h3 id="displaying-code-ltpregt">Displaying Code  &lt;pre&gt;</h3>
<pre>
Here comes code.
<html>
<head>
<title>Code Blocks</title>
</head>
<body></body>
</html>
</pre>
<h3 id="ltblockquotegt">&lt;blockquote&gt;</h3>
<h3 id="quotation--ltblockquotegt">Quotation &lt;blockquote&gt;</h3>
<blockquote>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</blockquote>
<h3 id="ltolgt">&lt;ol&gt;</h3>
<h3 id="ordered-lists-ltolgt">Ordered Lists  &lt;ol&gt;</h3>
<ol>
<li>One</li>
<li>Two</li>
@ -386,7 +392,7 @@
<li>Five</li>
</ol>
<h3 id="ltulgt">&lt;ul&gt;</h3>
<h3 id="unordered-lists-ltulgt">Unordered Lists  &lt;ul&gt;</h3>
<ul>
<li>One item
<ul>
@ -407,17 +413,26 @@
<li>Fifth item and so on…</li>
</ul>
<h3 id="ltdlgt">&lt;dl&gt;</h3>
<h3 id="definition-lists-ltdlgt">Definition Lists  &lt;dl&gt;</h3>
<h3 id="ltdtgt">&lt;dt&gt;</h3>
<h3 id="ltddgt">&lt;dd&gt;</h3>
<dl>
<dt>Definition Lists</dt>
<dd>are beautiful</dd>
<dd>organize content</dd>
<dt>Definition Lists</dt>
<dd>Item One</dd>
<dt>Definition Lists</dt>
<dd>One more Item</dd>
</dl>
<h3 id="ltagt">&lt;a&gt;</h3>
<p><a href="http://phlow.de/">Links</a> make the web exceptional.</p>
<h3 id="ltemgt">&lt;em&gt;</h3>
<p>Lets <em>emphasize</em> how important responsive webdesign is.</p>
<h3 id="ltstronggt">&lt;strong&gt;</h3>
<p>This looks like <strong>bold</strong> text.</p>
<h3 id="ltsmallgt">&lt;small&gt;</h3>
<p><small>This is small text.</small></p>