<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>webventil &#187; Tutorials</title>
	<atom:link href="http://webventil.de/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://webventil.de</link>
	<description>Wissenswertes rund um Webtechnologien und Grafikdesign.</description>
	<lastBuildDate>Mon, 14 Mar 2011 17:19:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Texteffekte mit CSS3</title>
		<link>http://webventil.de/2011/03/14/texteffekte-mit-css3/</link>
		<comments>http://webventil.de/2011/03/14/texteffekte-mit-css3/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 17:17:27 +0000</pubDate>
		<dc:creator>Arne</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[3D Text]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[Feuer]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Multiple Backgrounds]]></category>
		<category><![CDATA[Neon]]></category>
		<category><![CDATA[Text-Shadow]]></category>

		<guid isPermaLink="false">http://webventil.de/?p=692</guid>
		<description><![CDATA[Seit CSS3 hat man nicht nur die Möglichkeit Multiple-Backgrounds zu benutzen, sondern auch Mehrfach das text-shadow Attribut zu nutzen. Dieses führt zu schönen Text Effekten. 

 <a href="http://webventil.de/2011/03/14/texteffekte-mit-css3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><p>Seit <em>CSS3</em> hat man nicht nur die Möglichkeit <em>Multiple-Backgrounds</em> zu benutzen, sondern auch Mehrfach das <em>text-shadow</em> Attribut zu nutzen. Dieses führt zu schönen Text Effekten. Die Parameter bei der Verwendung von <em>text-shadow</em> sind:</p>
<p><em>text-shadow</em>: &lt;Verschiebung x-Richtung&gt;&lt;Verschiebung y-Richtung&gt;&lt;Stärke Weichzeichner&gt;&lt;Farbe&gt;;</p>
<h3>Neon</h3>
<p><img class="alignnone size-full wp-image-698" title="neon" src="http://webventil.de/wp-content/uploads/2011/03/neon.png" alt="" width="489" height="143" /></p>
<pre class="brush: css">
.neon {
color:#fff;
background:#000;
text-shadow: 0 0 10px #fff,
0 0 20px #fff,  0 0 30px #fff,
0 0 40px #ff00de,
0 0 70px #ff00de,
0 0 80px #ff00de,
0 0 100px #ff00de,
0 0 150px #ff00de;
}
</pre>
<h3>Giftig</h3>
<p><img class="alignnone size-full wp-image-696" title="giftig" src="http://webventil.de/wp-content/uploads/2011/03/giftig.png" alt="" width="489" height="143" /></p>
<pre class="brush: css">
.giftig {
color:#fff;
background:#000;
text-shadow: 0 0 10px #fff,
0 0 20px #fff,
0 0 30px #fff,
0 0 40px #06ff00,
0 0 70px #06ff00,
0 0 80px #06ff00,
0 0 100px #06ff00,
0 0 150px #06ff00;
}
</pre>
<h3>Feuer</h3>
<p><img class="alignnone size-full wp-image-695" title="feuer" src="http://webventil.de/wp-content/uploads/2011/03/feuer.png" alt="" width="489" height="143" /></p>
<pre class="brush: css">
.feuer {
color: black;
text-shadow: 0px 0px 4px #fff,
0px -5px 4px #FF3,
2px -10px 6px #FD3,
-2px -15px 11px #F80,
2px -25px 18px #F20;
}
</pre>
<h3>3D Brille</h3>
<p><img class="alignnone size-full wp-image-693" title="3dbrille" src="http://webventil.de/wp-content/uploads/2011/03/3dbrille.png" alt="" width="489" height="143" /></p>
<pre class="brush: css">
.dreiDBrille {
color:rgba(255,0,0,0.5);
background:#fff;
text-shadow: 8px 0px 0 rgba(0,255,0,0.5);
}
</pre>
<h3>3D Text</h3>
<p><img class="alignnone size-full wp-image-694" title="3dtext" src="http://webventil.de/wp-content/uploads/2011/03/3dtext.png" alt="" width="489" height="143" /></p>
<pre class="brush: css">
.dreiDText {
background:#404040;
color:#fff;
text-shadow: 0 1px 0 #ccc,
0 2px 0 #c9c9c9,
0 3px 0 #bbb,
0 4px 0 #b9b9b9,
0 5px 0 #aaa,
0 6px 1px rgba(0,0,0,0.1),
0 0 5px rgba(0,0,0,0.1),
0 1px 3px rgba(0,0,0,0.3),
0 3px 5px rgba(0,0,0,0.2),
0 5px 10px rgba(0,0,0,0.25),
0 10px 10px rgba(0,0,0,0.2),
0 20px 20px rgba(0,0,0,0.15);
}
</pre>
<h3>Letter</h3>
<p><img class="alignnone size-full wp-image-697" title="letter" src="http://webventil.de/wp-content/uploads/2011/03/letter.png" alt="" width="489" height="143" /></p>
<pre class="brush: css">
.letterpress {
background:#404040;
color:#303030;
text-shadow: -1px -1px 0px #101010,
1px 1px 0px #505050;
}
</pre>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS9kZW1vcy9jc3MzLzIv" target=\"_blank\">DEMO</a></h3>
<h3>Quellen:</h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dzbWl0aGRlc2lnbi53b3JkcHJlc3MuY29tLzIwMTAvMTEvMTUvcHJhY3RpY2FsLXJlYXNvbnMtZm9yLWNzczMtc2hhZG93cy8=">http://wsmithdesign.wordpress.com/2010/11/15/practical-reasons-for-css3-shadows/</a><br />
<a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL21hcmtkb3R0by5jb20vcGxheWdyb3VuZC8zZC10ZXh0LyA=">http://markdotto.com/playground/3d-text/ </a><br />
<a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL21hcmtkb3R0by5jb20vcGxheWdyb3VuZC8zZC10ZXh0LyA=">http://line25.com/tutorials/create-a-letterpress-effect-with-css-text-shadow</a></p>
 <img src="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=692" width="1" height="1" style="display: none;" /> <p><a href="http://webventil.de/?flattrss_redirect&amp;id=692&amp;md5=ec388644fcbc0966ae2abf1529d60454" title="Flattr" target="_blank"><img src="http://webventil.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://webventil.de/2011/03/14/texteffekte-mit-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash in HTML5 konvertieren</title>
		<link>http://webventil.de/2011/03/09/flash-in-html5-konvertieren/</link>
		<comments>http://webventil.de/2011/03/09/flash-in-html5-konvertieren/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 15:28:47 +0000</pubDate>
		<dc:creator>Arne</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[CSS3 Animationen]]></category>
		<category><![CDATA[FLA]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Keyframe Animation]]></category>
		<category><![CDATA[SVG]]></category>
		<category><![CDATA[Wallaby]]></category>
		<category><![CDATA[Wallaby Technology Preview]]></category>

		<guid isPermaLink="false">http://webventil.de/?p=679</guid>
		<description><![CDATA[Bis gestern habe ich mich immer davor gedrückt in die Flash Welt abzutauchen. Aber gestern habe ich dann zum ersten mal auch Adobe Flash CS5 meiner Adobe Suite geöffnet. Adobe Labs hat nämlich Wallaby Technology Preview veröffentlicht. Damit ist ... <a href="http://webventil.de/2011/03/09/flash-in-html5-konvertieren/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><p>Bis gestern habe ich mich immer davor gedrückt in die <em>Flash</em> Welt abzutauchen. Aber gestern habe ich dann zum ersten mal auch <em>Adobe Flash CS5</em> meiner <em>Adobe Suite</em> geöffnet. <em>Adobe Labs</em> hat nämlich <em>Wallaby Technology Preview</em> veröffentlicht. Damit ist es möglich FLA Dateien in HTML5 Webseiten umzuwandeln. Dabei <del>wird die Animation als Canvas umgewandelt</del> werden die einzelnen <em>Layer</em> als <em>SVG</em> exportiert und mit <em>CSS3 Keyframe Animation </em>und <em>jQuery</em> animiert. Die Animationen sind allerdings nur mit Webkit Browsern wie Chrome oder Safari anzusehen.</p>
<p><em>Wallaby</em> kann man hier <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2xhYnMuYWRvYmUuY29tL3RlY2hub2xvZ2llcy93YWxsYWJ5LyNBZG9iZQ==" target=\"_blank\">runterladen</a>. Das Programm kommt in gewohnter <em>Adobe</em> Manier als <em>Air</em> Anwendung für <em>Mac</em> und <em>Windows</em> daher. Das Interface ermöglicht es eine <em>FLA</em> Datei zu laden und zu konvertieren. Eventuelle Fehler werden auch angezeigt.</p>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMy9XYWxsYWJ5LVRlY2hub2xvZ3ktUHJldmlldy5qcGc="><img class="alignnone size-full wp-image-681" title="Wallaby Technology Preview" src="http://webventil.de/wp-content/uploads/2011/03/Wallaby-Technology-Preview.jpg" alt="" width="495" height="370" /></a></p>
<p><em>ActionScript</em> wird bisher nicht unterstützt. Die gesamte Feature und Support Liste gibt es <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2xhYnMuYWRvYmUuY29tL3dpa2kvaW5kZXgucGhwL1dhbGxhYnkjRmVhdHVyZXNfYW5kX1N1cHBvcnQ=" target=\"_blank\">hier</a>.</p>
<p>Zu Testzwecken habe ich eine kleine Animation erzeugt und diese auch konvertiert. Leider sind meine <em>Flash</em> Skills sehr bescheiden, aber zu Testzwecken sollte diese kleine Animation reichen.</p>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS9kZW1vcy9odG1sNS82Lw==" target=\"_blank\">DEMO</a> DOWNLOAD (<a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMy9iYWxsLmZsYV8uemlw">FLA</a>, <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMy9iYWxsLnppcA==">HTML5</a>)</p>
 <img src="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=679" width="1" height="1" style="display: none;" /> <p><a href="http://webventil.de/?flattrss_redirect&amp;id=679&amp;md5=9f31fcd8aca3305fc008d52f67ad73a4" title="Flattr" target="_blank"><img src="http://webventil.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://webventil.de/2011/03/09/flash-in-html5-konvertieren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Backgrounds mit CSS3</title>
		<link>http://webventil.de/2011/03/06/multiple-backgrounds-mit-css3/</link>
		<comments>http://webventil.de/2011/03/06/multiple-backgrounds-mit-css3/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 09:15:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Multiple Backgrounds]]></category>

		<guid isPermaLink="false">http://webventil.de/?p=667</guid>
		<description><![CDATA[Seit CSS3 hat man als Benutzer die Möglichkeit mehrere Hintergründe für eine Box setzen. Vorher war man darauf angewiesen mehrere Boxen ineinander zu verschachteln und jeder dieser Boxen ein neues Background Attribut hinzuzufügen. Mit CSS3 ist das weit aus ... <a href="http://webventil.de/2011/03/06/multiple-backgrounds-mit-css3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><p>Seit <em>CSS3</em> hat man als Benutzer die Möglichkeit mehrere Hintergründe für eine Box setzen. Vorher war man darauf angewiesen mehrere Boxen ineinander zu verschachteln und jeder dieser Boxen ein neues Background Attribut hinzuzufügen. Mit <em>CSS3</em> ist das weit aus eleganter.</p>
<pre class="brush: css">
body {
background: url(images/background_grass.png)  bottom repeat-x,
url(images/background_stone.png)  bottom right no-repeat,
url(images/background_clouds.png) left top repeat-x,
url(images/background_sun.png) right top no-repeat,
url(images/background_sky.png) top repeat-x rgba(255,255,255,1);
}
</pre>
<p>Diese paar Zeilen <em>CSS</em> reichen aus, um dem <em>body</em> Element fünf verschiedene Hintergrundbilder zuzuordnen. Das &#8220;oberste&#8221; Element wird als vorderstes Element angezeigt. Die einzelnen Attribute werden einfach Komma-getrennt angefügt. Über die Eigenschaften <em>top, bottom, left, right</em> kann man ihre Position festlegen.</p>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMy9tdWx0aXBsZUJhY2tncm91bmQuanBn"><img class="size-full wp-image-669 alignnone" title="multipleBackground" src="http://webventil.de/wp-content/uploads/2011/03/multipleBackground.jpg" alt="" width="543" height="499" /></a></p>
<blockquote><p>The background of a box can have multiple layers in CSS3</p></blockquote>
<p>Quelle: <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy53My5vcmcvVFIvY3NzMy1iYWNrZ3JvdW5kLyNsYXllcmluZw==" target=\"_blank\">http://www.w3.org/TR/css3-background/#layering</a></p>
<p>Das ganze funktioniert für folgende Browser.</p>
<div id="attachment_672" class="wp-caption alignnone" style="width: 549px"><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMy9maW5kbXlpcC5qcGc="><img class="size-full wp-image-672  " title="findmyip" src="http://webventil.de/wp-content/uploads/2011/03/findmyip.jpg" alt="" width="539" height="107" /></a><p class="wp-caption-text">Foto: http://fmbip.com/</p></div>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS9kZW1vcy9odG1sNS80Lw==" target=\"_blank\">DEMO</a> <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMy9tdWx0aXBsZWJhY2tncm91bmRzLnppcA==">DOWNLOAD</a></h3>
 <img src="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=667" width="1" height="1" style="display: none;" /> <p><a href="http://webventil.de/?flattrss_redirect&amp;id=667&amp;md5=cfd349606aad7b23eed613f42f2e46ef" title="Flattr" target="_blank"><img src="http://webventil.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://webventil.de/2011/03/06/multiple-backgrounds-mit-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zeitungslayout mit HTML5 und CSS3</title>
		<link>http://webventil.de/2011/02/27/zeitungslayout-mit-html5-und-css3/</link>
		<comments>http://webventil.de/2011/02/27/zeitungslayout-mit-html5-und-css3/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 11:06:40 +0000</pubDate>
		<dc:creator>Arne</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Zeitungslayout]]></category>

		<guid isPermaLink="false">http://webventil.de/?p=648</guid>
		<description><![CDATA[Um Printmedien im Internet in gewohnter Weise darzustellen, bietet CSS3 viele schöne Features. Es ermöglicht z.B. einen Text in Spalten darstellen zu lassen.  Auch kann man mit dem CSS Attribut text-justify, einen ähnlichen Effekt wie Blocksatz erzeugen. Dabei ... <a href="http://webventil.de/2011/02/27/zeitungslayout-mit-html5-und-css3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><p>Um Printmedien im Internet in gewohnter Weise darzustellen, bietet <em>CSS3</em> viele schöne Features. Es ermöglicht z.B. einen Text in Spalten darstellen zu lassen.  Auch kann man mit dem <em>CSS</em> Attribut <em>text-justify</em>, einen ähnlichen Effekt wie Blocksatz erzeugen. Dabei werden Abstände zwischen den Zeichen erhöht, um einen <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2RlLndpa2lwZWRpYS5vcmcvd2lraS9GbGF0dGVyc2F0eg==" target=\"_blank\">Flattersatz</a> zu verhindern.</p>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi9IVE1MNS1aZWl0dW5nLTEuanBn"><img class="size-full wp-image-656 alignnone" title="HTML5 Zeitung" src="http://webventil.de/wp-content/uploads/2011/02/HTML5-Zeitung-1.jpg" alt="HTML5 Zeitung" width="646" height="401" /></a></p>
<p>Ziel dieses Tutorials wird es sein ein Zeitungslayout für das Web zu erstellen. Erst einmal erstellen wir dafür eine Art Container <em>&lt;div id=&#8221;container&#8221; /&gt;</em> um die Zeitung nachher zentriert darstellen zu können. Für den Titel unser Tageszeitung reichen die wenigen Schriftarten, die uns zur Verfügung stehen nicht aus. Also bedienen wir uns der @font-face Syntax. Für den Titel wählen wir <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5kYWZvbnQuY29tL2VuZ2xpc2gtdG93bmUuZm9udA==" target=\"_blank\">English Towne</a> und binden den Font wie folgt ein.</p>
<pre class="brush: css">
@font-face
{
font-family:&#039;English Towne&#039;;
src:local(&#039;English Towne&#039;), url(fonts/EnglishTowne.ttf) format(&amp;quot;truetype&amp;quot;)
}
</pre>
<p>Für den Teaser verwenden wir die Schriftart Molengo, die man über Google Web Fonts einbinden kann. Die Schriftart können wir einfach als <em>font</em> &#8220;Molengo&#8221; auswählen.</p>
<pre class="brush: css">
@import url(http://fonts.googleapis.com/css?family=Molengo);
#teaser article{
font:10pt &#039;Molengo&#039;;
}
</pre>
<p>Kommen wir nun zum header der Zeitung. Er besteht aus dem Zeitungsnamen und einer weiteren Zeile.</p>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi9oZWFkZXIuanBn"><img class="alignnone size-full wp-image-657" title="header" src="http://webventil.de/wp-content/uploads/2011/02/header.jpg" alt="Zeitungs Header" width="610" height="87" /></a></p>
<pre class="brush: css">
header
{
	display:block;
	text-align:center;
}

#container &gt; header
{
	border-bottom:rgba(4,99,128,1) 5px solid;
	margin-bottom:10px;
}

#container &gt; header h1
{
	font:50pt &#039;English Towne&#039;;
	margin:0;
}

#container &gt; header p
{
	font-size:12pt;
	margin:0;
	padding:0;
}
</pre>
<p>Da wir nur das erste Header Element in dem Container haben möchten, benutzten wir das Pseudotag &#8220;&gt;&#8221; um nur das &#8220;Child Element&#8221; von #container zu adressieren. Den eigentlichen Inhalt fassen wir in eine eigene DIV Box, die das Attribut <em>display:table</em> bekommt ein. Die zwei Inhaltsspalten <em>section</em> und <em>aside</em> haben dementsprechend display:table-cell.</p>
<p style="text-align: left;"><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi9MYXlvdXQuanBn"><img class="alignnone size-full wp-image-658" title="Layout" src="http://webventil.de/wp-content/uploads/2011/02/Layout.jpg" alt="Layout" width="522" height="400" /></a></p>
<p>In dem Teaser ist ein Hinweis auf Seite 2. Um nicht jedes mal ein &#8220;►&#8221; vor einen Link zu bekommen, können wir uns dem :<em>before </em>Selector in CSS bedienen und das <em>content</em> Attribut verwenden.</p>
<pre class="brush: css">
#teaser a
{
color:rgba(0,0,0,1);
font-weight:bold;
text-decoration:none;
}

#teaser a:before
{
content:&quot;►&quot;;
}
</pre>
<p>Kommen wir nun zum Spaltenlayout. Dafür Bietet <em>CSS3</em> das <em>column-gap </em>Attribut, welches den Abstand zwischen den Spalten festlegt, die <em>column-rule</em>, die die Border angibt und <em>column-width</em>, welches die Breite der Spalten festlegt. Je nach dem viel viel Platz vorhanden ist, entstehen dann Spalten, in diesen Maßen.</p>
<pre class="brush: css">
section article p
{
-moz-column-gap:20px;
-moz-column-rule:rgba(102,102,102,1) 1px solid;
-moz-column-width:200px;
-webkit-column-gap:20px;
-webkit-column-rule:rgba(102,102,102,1) 1px solid;
-webkit-column-width:200px;
column-gap:20px;
column-rule:rgba(102,102,102,1) 1px solid;
column-width:200px;
}
</pre>
<p>Schenken wir jetzt noch dem Bild im Teaser besondere Aufmerksamkeit. Nehmen wir an, wir möchten diesem eine Bildunterschrift hinzufügen, möchten die aber nur anzeigen, wenn man über das Bild mit der Maus fährt.</p>
<pre class="brush: html">
&lt;div class=&quot;image&quot;&gt;
          	&lt;img src=&quot;images/stuhl.jpg&quot; alt=&quot;stuhl&quot; /&gt;
            &lt;span class=&quot;caption&quot;&gt;Ein Stuhl - Foto: webventil.de&lt;/span&gt;
          &lt;/div&gt;
</pre>
<p>Dafür erstellen wir eine Div Box, die <em>overflow:hidden </em>und <em>postition:relative</em> als Attribut aufweist. Das letztere ermöglicht es uns die Bildunterschrift (<em>caption</em>) mit <em>postition:absolute</em>, und <em>bottom:0px</em> an die untere Kante des Bildes zu platzieren. Jetzt wählen wir als <em>margin-bottom</em> noch einen negativen Pixelwert, sowie eine <em>transition</em> auf diese Eigenschaft. In der hover Regel setzt man das <em>margin-bottom</em> auf 0px.</p>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi9CaWxkLmpwZw=="><img class="alignnone size-full wp-image-659" title="Bild" src="http://webventil.de/wp-content/uploads/2011/02/Bild.jpg" alt="Bild" width="414" height="396" /></a></p>
<pre class="brush: css">
#teaser .image
{
border:rgba(0,0,0,0.5) 1px solid;
display:block;
overflow:hidden;
padding:5px;
position:relative;
}

#teaser .image:hover
{
box-shadow:rgba(0,0,0,0.5) 0 0 20px;
}

#teaser .image .caption
{
-moz-transition:margin-bottom;
-moz-transition-duration:.5s;
-moz-transition-timing-function:ease-in-out;
-webkit-transition:margin-bottom;
-webkit-transition-duration:.5s;
-webkit-transition-timing-function:ease-in-out;
background:rgba(0,0,0,0.5);
bottom:0;
color:rgba(255,255,255,1);
display:block;
font-size:12pt;
left:0;
margin-bottom:-100px;
padding:5px;
position:absolute;
transition:margin-bottom;
transition-duration:.5s;
transition-timing-function:ease-in-out;
width:100%;
}

#teaser .image:hover .caption
{
margin-bottom:0;
}
</pre>
<p>Damit ist unser Zeitungslayout fertig.</p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS9kZW1vcy9odG1sNS8zL2luZGV4Lmh0bWw=" target=\"_blank\">DEMO</a> <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi96ZWl0dW5nLnppcA==">DOWNLOAD</a></h3>
 <img src="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=648" width="1" height="1" style="display: none;" /> <p><a href="http://webventil.de/?flattrss_redirect&amp;id=648&amp;md5=6df6f5da92a7445179c904e2907c43cc" title="Flattr" target="_blank"><img src="http://webventil.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://webventil.de/2011/02/27/zeitungslayout-mit-html5-und-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wie erstellt man eine ToDo Liste in HTML5 mit Local Storage</title>
		<link>http://webventil.de/2011/02/23/wie-erstellt-man-eine-todo-liste-in-html5-mit-local-storage/</link>
		<comments>http://webventil.de/2011/02/23/wie-erstellt-man-eine-todo-liste-in-html5-mit-local-storage/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 07:20:15 +0000</pubDate>
		<dc:creator>Arne</dc:creator>
				<category><![CDATA[JS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Local Storage]]></category>
		<category><![CDATA[ToDo Liste]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Webapplikation]]></category>

		<guid isPermaLink="false">http://webventil.de/?p=632</guid>
		<description><![CDATA[Mit HTML5 ist es möglich Offline Applikationen zu schreiben. Ein Grund dafür ist der Local Storage. Dieser ermöglicht es Daten in dem Browser des Benutzers zu speichern. Im Prinzip war das schon immer durch HTTP Cookies möglich. <a href="http://webventil.de/2011/02/23/wie-erstellt-man-eine-todo-liste-in-html5-mit-local-storage/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi9IVE1MNS1Ub0RvLUxpc3RlLmpwZw=="><img class="alignleft size-full wp-image-636" title="HTML5 ToDo Liste" src="http://webventil.de/wp-content/uploads/2011/02/HTML5-ToDo-Liste.jpg" alt="" width="235" height="196" /></a>Mit HTML5 ist es möglich Offline Applikationen zu schreiben. Ein Grund dafür ist der <em>Local Storage</em>. Dieser ermöglicht es Daten in dem Browser des Benutzers zu speichern. Im Prinzip war das schon immer durch <em>HTTP Cookies</em> möglich. Ein Nachteil von <em>Cookies</em> ist allerdings, dass sie bei jedem <em>HTML Request</em> mitgeschickt werden und pro Domain nicht mehr als 20 Cookies á 4KB existieren dürfen.</p>
<p>Die Größe von <em>Local Storage</em> hingegen ist nicht in ihrer Größe beschränkt. Die Daten werden von dem Browser des Benutzers verwaltet. Das bedeutet, dass die Daten auch nur in diesem Browser verfügbar sind.</p>
<p>Was bietet <em>Local Storage</em> also? Der Browser legt für die Seite eine Datenbank an, in der Datensätze gespeichert werden. Die Datensätze sind nicht wie bei einem Cookie oder Session Variablen auf ihre Größe beschränkt, sondern können beliebig groß sein. Öffnet man ein neues Fenster und ruft die Seite auf, wäre normalerweise die Session nicht mehr vorhanden. Dank Local Storage schon.</p>
<p><em>Local Storage</em> hat im wesentlichen vier Methoden.</p>
<p><strong>localStorage.setItem(id,value);</strong><br />
Mit diesem Methode kann man einer id einem Wert zuweisen.</p>
<p><strong>localStorage.getItem(id);</strong><br />
Mit dieser Methode bekommt man  den Wert einer id zurück.</p>
<p><strong>localStorage.removeItem(id);</strong><br />
Mit dieser Methode löscht man das Element mit der id.</p>
<p><strong>localStorage.clear();</strong><br />
Alle Daten in der <em>Local Storage</em> werden gelöscht.</p>
<p>Man kann auch direkt auf die Elemente zugreifen über localStorage[id].</p>
<p>In diesem Tutorial verwende ich das <em>jQuery Framework</em>. Man kann das ganze aber auch ohne dieses Framework umsetzen. <em>jQuery</em> bietet aber die <em>.blur()</em> Funktion, die ein Event hervorruft, sobald ein Element <em>getriggert</em> wird.</p>
<p>Unser HTML body besteht im Wesentlichen aus der Liste, die allerdings das Attribut <em>contenteditable</em> mit dem Wert <em>true</em> aufweist. Dadurch kann man sie bearbeiten. Bei der Überschrift hab ich das gleich Attribut verwendet um die Liste auch für andere Zwecke verwenden zu können.</p>
<pre class="brush: html">
&lt;ol id=&quot;liste&quot; contenteditable=&quot;true&quot;&gt;
      &lt;li&gt;&lt;/li&gt;
 &lt;/ol&gt;
</pre>
<p>In dem JavaScript speichert man das HTML Object zunächst in eine Variable ab.</p>
<pre class="brush: js">
toDoListe = $(&#039;#liste&#039;);
</pre>
<p>Für jede dieser Variable (Liste / Überschrift) zwei verschiedene Aufrufe. Zunächst wird überprüft ob für diese id schon ein Wert abgespeichert wurde. Ist dies der Fall, rufen wir auf die HTML Objekt die jQuery .html() Funktion auf, wobei der Parameter unser localStorage Element ist.</p>
<pre class="brush: js">
if (localStorage.getItem(&#039;toDoListe&#039;)) {
toDoListe.html(localStorage.getItem(&#039;toDoListe&#039;));
}
</pre>
<p>Wenn wir Änderungen in der Liste verfolgen möchten, können wir dafür die <em>.blur()</em> Funktion benutzten. Erfolgt eine Änderung speichern wir das Ergebnis im <em>Local Storage</em>.</p>
<pre class="brush: js">
toDoListe.blur(function() {
localStorage.setItem(&#039;toDoListe&#039;, $(this).html());
});
</pre>
<p>Da es zur Zeit Probleme mit Safari gibt, wenn zwei leere Listenelemente übereinander erzeugt werden, habe ich noch den folgenden Fix implementiert, der das vorherige Listenelement überprüft, ob es leer ist.</p>
<pre class="brush: js">
toDoListe.keypress(function(event) {
if(event.which==13){
if(toDoListe.find(&#039;li&#039;).last().html()==&#039;&amp;amp;amp;lt;br&amp;amp;amp;gt;&#039;){
event.preventDefault();
}
}
});
</pre>
<p>Zusätzlich ist noch ein Button implementiert, der die Funktion <em>localStorage.clear();</em> aufruft um den <em>Local Storage</em> zu leeren.</p>
<p>Fertig ist unsere ToDo Liste! Erst nach dem aktualisieren der Seite kann man das Resultat begeistern.</p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS9kZW1vcy9odG1sNS8yL2luZGV4Lmh0bWw=" target=\"_blank\">DEMO</a> <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi9sb2NhbFN0b3JhZ2Uuemlw">DOWNLOAD</a></h3>
 <img src="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=632" width="1" height="1" style="display: none;" /> <p><a href="http://webventil.de/?flattrss_redirect&amp;id=632&amp;md5=71f96c36b423ffda9d7d27c6c96f381b" title="Flattr" target="_blank"><img src="http://webventil.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://webventil.de/2011/02/23/wie-erstellt-man-eine-todo-liste-in-html5-mit-local-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wie gestalte ich eine Webseite mit HTML 5 &#8211; Teil 1</title>
		<link>http://webventil.de/2011/02/17/wie-gestalte-ich-eine-webseite-in-html-5-teil-1/</link>
		<comments>http://webventil.de/2011/02/17/wie-gestalte-ich-eine-webseite-in-html-5-teil-1/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 15:29:29 +0000</pubDate>
		<dc:creator>Arne</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Semantik]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://webventil.de/?p=571</guid>
		<description><![CDATA[Im vorangegangen Tutorial habe ich schon ein paar Grundlagen in HTML5 vermittelt. Ich möchte in diesem Tutorial erst einmal nur auf die Semantik eingehen. Ziel ist es, einen Blog zu designen, der in etwa so aussehen wird:



In diesem Tutorial ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><p>Im <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS8yMDExLzAyLzEzL2Vyc3RlLXNjaHJpdHRlLW1pdC1odG1sNS11bmQtY3NzMy8=">vorangegangen Tutorial</a> habe ich schon ein paar Grundlagen in HTML5 vermittelt. Ich möchte in diesem Tutorial erst einmal nur auf die Semantik eingehen. Ziel ist es, einen Blog zu designen, der in etwa so aussehen wird:</p>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi9pbWFnZS5wbmc="><img class="alignnone size-full wp-image-572" title="html5blog" src="http://webventil.de/wp-content/uploads/2011/02/image.png" alt="" width="520" height="689" /></a></p>
<p>In diesem Tutorial kümmern wir uns erstmal die Seitenstruktur. Das nächste Tutorial wird sich mit dem Gestalten der Seite mit Hilfe von CSS3 kümmern. In einem dritten Tutorial werden wir versuchen den Blog so anzupassen, dass er möglichst auch abwärtskompatibel ist.</p>
<p>Fangen wir also an. Die Seite ist untergliedert in einen Header, der auch die Seitennavigation beinhaltet, einem Inhaltsbereich, der in zwei Spalten geteilt ist und dem Footer, wo Copyright oder ähnliches später drinstehen soll.</p>
<p>Wie schon im vorangegangen Post erwähnt ist unser <em>HTML head</em> durch <em>HTML5</em> sehr aufgeräumt. Das Attribute lang im <em>html Tag</em> weißt auf die verwendete Sprache im Dokument hin, das Attribut <em>charset</em> im <em>meta Tag</em> gibt das Encoding der Seite an.<span id="more-571"></span></p>
<pre class="brush: html">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;de&quot;&gt;
&lt;head&gt;
&lt;meta charset=&quot;UTF-8&quot;&gt;
&lt;title&gt;HTML5 Homepage&lt;/title&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot;&gt;
&lt;/head&gt;
</pre>
<p>Es folgt der HTML Body, den wir mit einem <em>&#8220;Container&#8221;-DIV</em> beginnen wollen. Dieser umschließt alle Elemente und ermöglicht es uns die Seite später zu zentrieren. Das erste Element in diesem <em>Container </em>ist unser Header. Hier möchten wir unser Logo platzieren und die Seitennavigation einfügen. Für den Header verwenden wir den neuen <em>&lt;header&gt;</em><em> Tag</em><em>.</em></p>
<blockquote><p>The header element represents the header of a section.</p></blockquote>
<p>Quelle: <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2Rldi53My5vcmcvaHRtbDUvbWFya3VwL2hlYWRlci5odG1s" target=\"_blank\">W3C HTML5:header</a></p>
<p>Die Navigation schließen wir mit dem neuen <em>&lt;nav&gt;</em><em> Tag </em>ein. Da die Listenelemente der Navigation floaten, fügen wir eine<em> DIV-Box </em>unter das Element. Dazu mehr im 2. Teil.</p>
<blockquote><p>The nav element represents a section of a document that links to other documents or to parts within the document itself; that is, a section of navigation links.</p></blockquote>
<p>Quelle: <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2Rldi53My5vcmcvaHRtbDUvbWFya3VwL25hdi5odG1sI25hdg==" target=\"_blank\">W3C HTML5:nav</a></p>
<pre class="brush: html">
&lt;body&gt;

&lt;div id=&quot;containter&quot;&gt;&lt;!--containter start--&gt;
&lt;header&gt;&lt;!--header start--&gt;
&lt;div id=&quot;logo&quot;&gt;
&lt;img src=&quot;css/images/logo.png&quot; alt=&quot;logo&quot; /&gt;
&lt;p&gt;Eine kleine Testseite&lt;/p&gt;
&lt;/div&gt;
&lt;nav&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&quot;#&quot;&gt;Home&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&quot;#&quot;&gt;Unterseiten&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&quot;#&quot;&gt;Unterpunkt 1&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&quot;#&quot;&gt;Unterpunkt 2&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/nav&gt;
&lt;/header&gt;
&lt;div class=&quot;clear&quot; /&gt;
</pre>
<p>Es folgt unser <em>content</em> Bereich, dieser wird geteilt in <em>&lt;section&gt;</em> und <em>&lt;aside&gt;</em>. In dem s<em>ection</em> Bereich kommen nachher unsere Artikel rein.</p>
<blockquote><p>The section element represents a section of a document, typically with a title or heading.</p></blockquote>
<p>Quelle: <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2Rldi53My5vcmcvaHRtbDUvbWFya3VwL3NlY3Rpb24uaHRtbCNzZWN0aW9u" target=\"_blank\">W3C HTML5:section</a></p>
<p>Wir fügen in die Section einzelne <em>&lt;article&gt;</em> Elemente, unsere Blogartikel.</p>
<blockquote><p>The article element represents a section of content that forms an independent part of a document or site; for example, a magazine or newspaper article, or a blog entry.</p></blockquote>
<p>Quelle: <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2Rldi53My5vcmcvaHRtbDUvbWFya3VwL2FydGljbGUuaHRtbCNhcnRpY2xl" target=\"_blank\">W3C HTML5:article</a></p>
<p>In jeden <em>&lt;article&gt; </em>können wir jetzt Überschriften mit dem <em>&lt;header&gt; </em>Tag gruppieren. Außerdem möchte ich im Header noch das Datum der Veröffentlichung mit unterbringen. Für ein Datum bietet <em>HTML5</em> das <em>&lt;time&gt; </em> Element. Dort kann in dem Attribut <em>pubdate</em> die Zeit stehen, wann der Artikel veröffentlich wurde.</p>
<blockquote><p>The time element represents a date and/or time.</p></blockquote>
<p>Quelle: <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2Rldi53My5vcmcvaHRtbDUvbWFya3VwL3RpbWUuaHRtbCN0aW1l" target=\"_blank\">W3C HTML5:time</a></p>
<p>Danach schreiben wir unseren eigentlichen Inhalt.</p>
<pre class="brush: html">
&lt;div id=&quot;content&quot;&gt;&lt;!--content start--&gt;
&lt;section&gt;&lt;!--feed start--&gt;
&lt;article&gt;
&lt;header&gt;
&lt;h2&gt;&lt;a href=&quot;#&quot;&gt;Artikelüberschrift&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Veröffentlicht am &lt;time datetime=&quot;2011-02-15&quot;&gt;15. Januar&lt;/time&gt; von &lt;b&gt;Arne&lt;/b&gt;&lt;/p&gt;
&lt;/header&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;/article&gt;
&lt;/section&gt;&lt;!--feed end--&gt;
</pre>
<p>Das <em>aside</em> Element benutzten wir für unsere Sidebar.</p>
<blockquote><p>The aside element represents content that is tangentially related to the content that forms the main textual flow of a document.</p></blockquote>
<p>Der dortige Inhalt sollte eigentlich Bezug zu dem Hauptinhalt auf der angezeigten Seite haben. Er sollte wie in einem Buch als Anmerkung benutzt werden. Daher eignet er sich eigentlich nicht als typische Blog Sidebar für Widgets. Das ignoriere ich hier allerdings.</p>
<pre class="brush: html">
&lt;aside&gt;&lt;!--sidebar start--&gt;
&lt;h2&gt;Kategorien&lt;/h2&gt;
&lt;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Li Element&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Li Element&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Li Element&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Li Element&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/p&gt;
&lt;/aside&gt;&lt;!--sidebar end--&gt;
&lt;div class=&quot;clear&quot; /&gt;
&lt;/div&gt;&lt;!--content end--&gt;
</pre>
<p>Abgeschlossen wird unsere Seite mit einem <em>&lt;footer&gt;.</em></p>
<blockquote><p>The footer element represents the footer for the section it applies to.</p></blockquote>
<p>Quelle: <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2Rldi53My5vcmcvaHRtbDUvbWFya3VwL2Zvb3Rlci5odG1sI2Zvb3Rlcg==" target=\"_blank\">W3C HTML5:footer</a></p>
<p>Footer können wir auch einsetzten um z.B. bei einem Blog-Artikel auf Kommentare hinzuweisen.</p>
<p>Damit sieht der gesamte Seitenquelltext wie folgt aus:</p>
<pre class="brush: html">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;de&quot;&gt;
&lt;head&gt;
&lt;meta charset=&quot;UTF-8&quot;&gt;
&lt;title&gt;HTML5 Homepage&lt;/title&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot;&gt;
&lt;/head&gt;

&lt;body&gt;

&lt;div id=&quot;containter&quot;&gt;&lt;!--containter start--&gt;
&lt;header&gt;&lt;!--header start--&gt;
&lt;div id=&quot;logo&quot;&gt;
&lt;img src=&quot;css/images/logo.png&quot; alt=&quot;logo&quot; /&gt;
&lt;p&gt;Eine kleine Testseite&lt;/p&gt;
&lt;/div&gt;
&lt;nav&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&quot;#&quot;&gt;Home&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&quot;#&quot;&gt;Unterseiten&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&quot;#&quot;&gt;Unterpunkt 1&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&quot;#&quot;&gt;Unterpunkt 2&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/nav&gt;
&lt;/header&gt;
&lt;div class=&quot;clear&quot; /&gt;
&lt;div id=&quot;content&quot;&gt;&lt;!--content start--&gt;
&lt;!--feed start--&gt;
&lt;h2&gt;&lt;a href=&quot;#&quot;&gt;Artikelüberschrift&lt;/a&gt;&lt;/h2&gt;
Veröffentlicht am 15. Januar von &lt;strong&gt;Arne&lt;/strong&gt;

Dies ist ein Typoblindtext. An ihm kann man sehen, ob alle Buchstaben da sind und wie sie aussehen. Manchmal benutzt man Worte wie Hamburgefonts, Rafgenduks oder Handgloves, um Schriften zu testen. Manchmal Sätze, die alle Buchstaben des Alphabets enthalten - man nennt diese Sätze »Pangrams«. Sehr bekannt ist dieser: The quick brown fox jumps over the lazy old dog. Oft werden in Typoblindtexte auch fremdsprachige Satzteile eingebaut (AVAIL® and Wefox™ are testing aussi la Kerning), um die Wirkung in anderen Sprachen zu testen. In Lateinisch sieht zum Beispiel fast jede Schrift gut aus. Quod erat demonstrandum. Seit 1975 fehlen in den meisten Testtexten die Zahlen, weswegen nach TypoGb. 204 § ab dem Jahr 2034 Zahlen in 86 der Texte zur Pflicht werden. Nichteinhaltung wird mit bis zu 245 € oder 368 $ bestraft. Genauso wichtig in sind mittlerweile auch Âçcèñtë, die in neueren Schriften aber fast immer enthalten sind. Ein wichtiges aber schwierig zu integrierendes Feld sind OpenType-Funktionalitäten. Je nach Software und Voreinstellungen können eingebaute Kapitälchen, Kerning oder Ligaturen (sehr pfiffig) nicht richtig dargestellt werden. Dies ist ein Typoblindtext. An ihm kann man sehen, ob alle Buchstaben da sind und wie sie aussehen. Manchmal benutzt man Worte wie Hamburgefonts, Rafgenduks
&lt;h2&gt;&lt;a href=&quot;#&quot;&gt;Artikelüberschrift&lt;/a&gt;&lt;/h2&gt;
Veröffentlicht am 15. Januar von &lt;strong&gt;Arne&lt;/strong&gt;

Dies ist ein Typoblindtext. An ihm kann man sehen, ob alle Buchstaben da sind und wie sie aussehen. Manchmal benutzt man Worte wie Hamburgefonts, Rafgenduks oder Handgloves, um Schriften zu testen. Manchmal Sätze, die alle Buchstaben des Alphabets enthalten - man nennt diese Sätze »Pangrams«. Sehr bekannt ist dieser: The quick brown fox jumps over the lazy old dog. Oft werden in Typoblindtexte auch fremdsprachige Satzteile eingebaut (AVAIL® and Wefox™ are testing aussi la Kerning), um die Wirkung in anderen Sprachen zu testen. In Lateinisch sieht zum Beispiel fast jede Schrift gut aus. Quod erat demonstrandum. Seit 1975 fehlen in den meisten Testtexten die Zahlen, weswegen nach TypoGb. 204 § ab dem Jahr 2034 Zahlen in 86 der Texte zur Pflicht werden. Nichteinhaltung wird mit bis zu 245 € oder 368 $ bestraft. Genauso wichtig in sind mittlerweile auch Âçcèñtë, die in neueren Schriften aber fast immer enthalten sind. Ein wichtiges aber schwierig zu integrierendes Feld sind OpenType-Funktionalitäten. Je nach Software und Voreinstellungen können eingebaute Kapitälchen, Kerning oder Ligaturen (sehr pfiffig) nicht richtig dargestellt werden. Dies ist ein Typoblindtext. An ihm kann man sehen, ob alle Buchstaben da sind und wie sie aussehen. Manchmal benutzt man Worte wie Hamburgefonts, Rafgenduks
&lt;!--feed end--&gt;
&lt;!--sidebar start--&gt;
&lt;h2&gt;Kategorien&lt;/h2&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Li Element&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Li Element&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Li Element&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Li Element&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Seiten&lt;/h2&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Li Element&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Li Element&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Li Element&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Li Element&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Links&lt;/h2&gt;
&lt;a href=&quot;http://www.w3.org/html/logo/&quot;&gt;
&lt;img title=&quot;HTML5 Powered with CSS3 / Styling, and Semantics&quot; src=&quot;http://www.w3.org/html/logo/badge/html5-badge-h-css3-semantics.png&quot; alt=&quot;HTML5 Powered with CSS3 / Styling, and Semantics&quot; width=&quot;165&quot; height=&quot;64&quot; /&gt;
&lt;/a&gt;

&lt;!--sidebar end--&gt;
&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
&lt;!--content end--&gt;

&lt;!--footer start--&gt;

Copyright © 2011 DeineSeite.de - Design von www.webventil.de

&lt;/div&gt;
&lt;!--container end--&gt;
</pre>
<p>Im nächsten Tutorial stylen wir den Blog mit Hilfe von CSS3.</p>
 <img src="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=571" width="1" height="1" style="display: none;" /> <p><a href="http://webventil.de/?flattrss_redirect&amp;id=571&amp;md5=ee4f1f51fe98eacc0926d33b2a9ac1d6" title="Flattr" target="_blank"><img src="http://webventil.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://webventil.de/2011/02/17/wie-gestalte-ich-eine-webseite-in-html-5-teil-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Erste Schritte mit HTML5 und CSS3</title>
		<link>http://webventil.de/2011/02/13/erste-schritte-mit-html5-und-css3/</link>
		<comments>http://webventil.de/2011/02/13/erste-schritte-mit-html5-und-css3/#comments</comments>
		<pubDate>Sun, 13 Feb 2011 15:34:58 +0000</pubDate>
		<dc:creator>Arne</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[Doctype]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[section]]></category>
		<category><![CDATA[Semantik]]></category>
		<category><![CDATA[XHTML 1.0]]></category>

		<guid isPermaLink="false">http://webventil.de/?p=556</guid>
		<description><![CDATA[HTML5 zieht sich gerade wie eine kleine Revolution durch das Internet. Nach und nach rüsten viele große Webseiten nach und präsentieren ihre Inhalte in dem neuen Standart. Doch was bietet mir HTML5 eigentlich?

	Offline / Storage
	Web SQL Datenbank
	Application Cache
	Real Time ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><p><em>HTML5</em> zieht sich gerade wie eine kleine Revolution durch das Internet. Nach und nach rüsten viele große Webseiten nach und präsentieren ihre Inhalte in dem neuen Standart. Doch was bietet mir <em>HTML5</em> eigentlich?<span id="more-556"></span></p>
<ul>
<li>Offline / Storage</li>
<li>Web SQL Datenbank</li>
<li>Application Cache</li>
<li>Real Time Communication über Web Sockets</li>
<li>File und Hardware Access</li>
<li>Drag and Drop</li>
<li>Geolocation</li>
<li>Speech Input (Formular)</li>
<li>Rich Media</li>
<li>&#8230;</li>
</ul>
<p>Darüber hinaus zeichnet sich <em>HTML5</em> auch durch eine viel bessere und einfachere Semantik aus als sein Vorgänger <em>XHTML 1.0 </em></p>
<p>Nehmen wir uns als Beispiel folgendes Layout vor.</p>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi9sYXlvdXQuanBn"><img class="alignnone size-full wp-image-557" title="layout" src="http://webventil.de/wp-content/uploads/2011/02/layout.jpg" alt="" width="467" height="350" /></a></p>
<p>Es gibt einen Header-Bereich, einen großen Inhaltsbereich wo z.B. bei einer Nachrichtenseite/Blog der Feed dargestellt wird und die Sidebar, sowie einen Footer. Bildet man das ganze mit <em>XHTML 1.0</em> ab, so kommt man auf den folgenden Quelltext.</p>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi94aHRtbC5qcGc="><img class="alignnone size-full wp-image-558" title="xhtml" src="http://webventil.de/wp-content/uploads/2011/02/xhtml.jpg" alt="" width="679" height="386" /></a></p>
<p>Auffallend groß ist hierbei die <em>Document Type Declaration</em>. Eine HTML5 Seite beginnt mit folgendem Doctype:</p>
<p><span style="color: #000000;"><em>&lt;!DOCTYPE html&gt;</em></span></p>
<p>Im <em>head</em> Element  befindet sich auch die <em>meta </em>Deklaration. Auch hier glänzt HTML5 wieder durch Einfachheit. Es reicht, wenn man folgendes schreibt:</p>
<p><em>&lt;meta charset=&#8221;utf-8&#8243; /&gt;</em></p>
<p>Wenden wir uns nun den weiteren Elementen zu. Das Element mit der id <em>container</em> ist in diesem Fall ein Wrapper um die ganzen Elemente, damit wir die Seite zentriert darstellen  können. Spannender sind die Elemente da drin. In unserem <em>header</em> Element möchten wir später mal unser Logo platzieren. Da das Motto von <em>HTML5</em> scheinbar <em>&#8220;Keep it simple&#8221; </em>lautet, ist es nicht verwunderlich, dass der Bedarf nach einem eigenen Tag dafür erkannt wurde. Ab sofort braucht man seinen <em>header </em>nicht mehr als <em>DIV </em>Box schreiben, sondern verwendet einfach:</p>
<p><em>&lt;header&gt;</em></p>
<p>Es gibt eine Menge neuer Tags, um den Quellcode besser lesbar zu machen und um den Inhalten in den einzelnen Elementen eine Bedeutung zu geben. So kann man seinen Feed durch das <em>section </em>Element umrunden. Dieses ist gedacht für &#8220;<em>a thematic grouping of content, typically with a heading</em>&#8220;. Hat man einzelne Artikel darin, kann man dafür das <em>article</em> Element verwenden. Unsere Sidebar verpacken wir in das <em>aside</em> Element (nur wenn der Inhalt darin sich auf den Inhalt in <em>section</em> bezieht) und für den Footer gibt es jetzt den <em>footer</em> Tag, so dass unser <em>HTML5</em> Quelltext für unsere Seite jetzt wie folgt aussieht:</p>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi9odG1sNS5qcGc="><img class="alignnone size-full wp-image-569" title="html5" src="http://webventil.de/wp-content/uploads/2011/02/html5.jpg" alt="" width="393" height="349" /></a></p>
<p>Und schon haben wir unsere erste <em>HTML5</em> Seite geschrieben.</p>
<p>In der folgenden kleinen Serie möchte ich ein <em>HTML5</em> Theme erstellen und Features von <em>CSS3</em> näher betrachten. Ich freue mich über Anregungen und Wünsche.</p>
 <img src="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=556" width="1" height="1" style="display: none;" /> <p><a href="http://webventil.de/?flattrss_redirect&amp;id=556&amp;md5=014da22dc5aa7027b0836788ca07c9cc" title="Flattr" target="_blank"><img src="http://webventil.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://webventil.de/2011/02/13/erste-schritte-mit-html5-und-css3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>15 tolle Tutorials zur Fotomanipulation in Photoshop</title>
		<link>http://webventil.de/2009/10/08/15-tolle-tutorials-zur-fotomanipulation-in-photoshop/</link>
		<comments>http://webventil.de/2009/10/08/15-tolle-tutorials-zur-fotomanipulation-in-photoshop/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 18:21:04 +0000</pubDate>
		<dc:creator>Arne</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Fotobearbeitung]]></category>

		<guid isPermaLink="false">http://webventil.de/?p=397</guid>
		<description><![CDATA[Wer sich schon immer mal richtig in Szene setzten wollte, dafür aber noch nicht das richtige Hintergrundmotiv hatte, dem wird die nachfolgende Sammlung an Tutorials helfen. Fotomanipulation macht einen immer größeren Anteil in Bildbearbeitung aus. Angefangen bei kleineren Schönheitskorrekturen, ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><p>Wer sich schon immer mal richtig in Szene setzten wollte, dafür aber noch nicht das richtige Hintergrundmotiv hatte, dem wird die nachfolgende Sammlung an Tutorials helfen. Fotomanipulation macht einen immer größeren Anteil in Bildbearbeitung aus. Angefangen bei kleineren Schönheitskorrekturen, bis hin zum Entfernen von Personen oder der einer Neuinszinierung des Bildes.</p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1jcmVhdGUtYW4taW1hZ2luYXRpdmUtbWFnaWNhbC1wYWludGVkLXNjZW5lLw==" target=\"_blank\">1. How to Create an Imaginative, Magical Painted Scene<br />
</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1jcmVhdGUtYW4taW1hZ2luYXRpdmUtbWFnaWNhbC1wYWludGVkLXNjZW5lLw=="></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1jcmVhdGUtYW4taW1hZ2luYXRpdmUtbWFnaWNhbC1wYWludGVkLXNjZW5lLw=="><img class="aligncenter size-full wp-image-399" title="1ImaginativeMagicalPainted" src="http://webventil.de/wp-content/uploads/2009/08/1ImaginativeMagicalPainted.jpg" alt="1ImaginativeMagicalPainted" width="448" height="280" /><span id="more-397"></span></a></h3>
<h3><span style="font-weight: normal;"><strong><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50dXRvcmlhbDkubmV0L3Bob3Rvc2hvcC9kZXNpZ24tYW4tZXBpYy1mYW50YXN5LXNjZW5lLXdpdGgtcGhvdG9zaG9wLw==" target=\"_blank\">2. Design an Epic Fantasy Scene with Photoshop</a></strong></span></h3>
<p><span style="font-weight: normal;"><strong><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50dXRvcmlhbDkubmV0L3Bob3Rvc2hvcC9kZXNpZ24tYW4tZXBpYy1mYW50YXN5LXNjZW5lLXdpdGgtcGhvdG9zaG9wLw=="><br />
<img class="aligncenter size-full wp-image-402" title="2EpicFantasyScene" src="http://webventil.de/wp-content/uploads/2009/08/2EpicFantasyScene.jpg" alt="2EpicFantasyScene" width="448" height="280" /></a></strong></span></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1jcmVhdGUtYS1mYW50YXN5LW1vdGhlci1uYXR1cmUtc2NlbmUv" target=\"_blank\">3. How to Create a Fantasy &#8220;Mother Nature&#8221; Scene</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1jcmVhdGUtYS1mYW50YXN5LW1vdGhlci1uYXR1cmUtc2NlbmUv" target=\"_blank\"><img class="aligncenter size-full wp-image-420" title="3mothernature" src="http://webventil.de/wp-content/uploads/2009/10/3mothernature.jpg" alt="3mothernature" width="448" height="280" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1jcmVhdGUtYS1waG90by1tYW5pcHVsYXRpb24tb2YtYS1mbG9vZGVkLWNpdHktc2NlbmUv" target=\"_blank\">4. How to Create a Photo Manipulation of a Flooded City Scene</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1jcmVhdGUtYS1waG90by1tYW5pcHVsYXRpb24tb2YtYS1mbG9vZGVkLWNpdHktc2NlbmUv" target=\"_blank\"><img class="aligncenter size-full wp-image-423" title="4FloodedCity" src="http://webventil.de/wp-content/uploads/2009/10/4FloodedCity.jpg" alt="4FloodedCity" width="448" height="280" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5jb21wdXRlcmFydHMuY28udWsvdHV0b3JpYWxzLzJkX19hbmRfX3Bob3Rvc2hvcC9jcmVhdGVfZHluYW1pY19kaXN0b3J0aW9uX2VmZmVjdHM=" target=\"_blank\">5. Create dynamic distortion effects</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5jb21wdXRlcmFydHMuY28udWsvdHV0b3JpYWxzLzJkX19hbmRfX3Bob3Rvc2hvcC9jcmVhdGVfZHluYW1pY19kaXN0b3J0aW9uX2VmZmVjdHM=" target=\"_blank\"><img class="aligncenter size-full wp-image-425" title="5DynamicDistortion" src="http://webventil.de/wp-content/uploads/2009/10/5DynamicDistortion.jpg" alt="5DynamicDistortion" width="448" height="280" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1jcmVhdGUtYS1wb3N0LWFwb2NhbHlwdGljLXBob3RvLW1hbmlwdWxhdGlvbi8=" target=\"_blank\">6. How To Create a Post Apocalyptic Photo Manipulation</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1jcmVhdGUtYS1wb3N0LWFwb2NhbHlwdGljLXBob3RvLW1hbmlwdWxhdGlvbi8=" target=\"_blank\"><img class="aligncenter size-full wp-image-427" title="6ApocalypticPhoto" src="http://webventil.de/wp-content/uploads/2009/10/6ApocalypticPhoto.jpg" alt="6ApocalypticPhoto" width="448" height="280" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50dXRvcmlhbDkubmV0L3Bob3Rvc2hvcC9jcmVhdGl2ZS1waG90b3Nob3AtYW5pbWFsLWtpbmctcGhvdG8tbWFuaXB1bGF0aW9uLXR1dG9yaWFsLw==" target=\"_blank\">7. Creative Photoshop Animal King Photo Manipulation Tutorial</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50dXRvcmlhbDkubmV0L3Bob3Rvc2hvcC9jcmVhdGl2ZS1waG90b3Nob3AtYW5pbWFsLWtpbmctcGhvdG8tbWFuaXB1bGF0aW9uLXR1dG9yaWFsLw==" target=\"_blank\"><img class="aligncenter size-full wp-image-429" title="7KingPhoto" src="http://webventil.de/wp-content/uploads/2009/10/7KingPhoto.jpg" alt="7KingPhoto" width="448" height="280" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL2lsbHVzdHJhdGlvbi9ob3ctdG8tY3JlYXRlLWEtc2xpY2Utb2YtbmF0dXJlLXBob3RvLW1hbmlwdWxhdGlvbi8=" target=\"_blank\">8. How to Create a Slice of Nature Photo Manipulation</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL2lsbHVzdHJhdGlvbi9ob3ctdG8tY3JlYXRlLWEtc2xpY2Utb2YtbmF0dXJlLXBob3RvLW1hbmlwdWxhdGlvbi8=" target=\"_blank\"><img class="aligncenter size-full wp-image-432" title="8NaturePhoto" src="http://webventil.de/wp-content/uploads/2009/10/8NaturePhoto.jpg" alt="8NaturePhoto" width="448" height="280" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1jcmVhdGUtYS1kYXJrLWVtb3Rpb25hbC1waG90by1tYW5pcHVsYXRpb24v" target=\"_blank\">9. How to Create a Dark Emotional Photo Manipulation</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1jcmVhdGUtYS1kYXJrLWVtb3Rpb25hbC1waG90by1tYW5pcHVsYXRpb24v" target=\"_blank\"><img class="aligncenter size-full wp-image-434" title="9DarkEmotional" src="http://webventil.de/wp-content/uploads/2009/10/9DarkEmotional.jpg" alt="9DarkEmotional" width="448" height="280" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZGZhbi5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMvcGhvdG8tbWFuaXB1bGF0ZS1hLWZhbGxpbmctYW5nZWwv" target=\"_blank\">10. Photo Manipulate a Falling Angel</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZGZhbi5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMvcGhvdG8tbWFuaXB1bGF0ZS1hLWZhbGxpbmctYW5nZWwv" target=\"_blank\"><img class="aligncenter size-full wp-image-436" title="10FallingAngel" src="http://webventil.de/wp-content/uploads/2009/10/10FallingAngel.jpg" alt="10FallingAngel" width="448" height="280" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3R1dG9yaWFscy1lZmZlY3RzL2hvdy10by1tb2xkLXBhaW50LXNwbGF0dGVyLXRvLWEtZmFjZS1pbi1waG90b3Nob3Av" target=\"_blank\">11. How to Mold Paint Splatter to a Face in Photoshop</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3R1dG9yaWFscy1lZmZlY3RzL2hvdy10by1tb2xkLXBhaW50LXNwbGF0dGVyLXRvLWEtZmFjZS1pbi1waG90b3Nob3Av" target=\"_blank\"><img class="aligncenter size-full wp-image-438" title="11SplatterFace" src="http://webventil.de/wp-content/uploads/2009/10/11SplatterFace.jpg" alt="11SplatterFace" width="448" height="280" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYmRlc2lnbmxlZGdlci5jb20vdHV0b3JpYWxzLzE4LWZyZXNoLXBob3Rvc2hvcC1waG90by1tYW5pcHVsYXRpb24tdHV0b3JpYWxz" target=\"_blank\">12. How to Combine Digital Painting and Photo Manipulation to Create a Platform Environment</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYmRlc2lnbmxlZGdlci5jb20vdHV0b3JpYWxzLzE4LWZyZXNoLXBob3Rvc2hvcC1waG90by1tYW5pcHVsYXRpb24tdHV0b3JpYWxz" target=\"_blank\"><img class="aligncenter size-full wp-image-440" title="12PlatformEnvironment" src="http://webventil.de/wp-content/uploads/2009/10/12PlatformEnvironment.jpg" alt="12PlatformEnvironment" width="448" height="280" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50dXRvcmlhbDkubmV0L3Bob3Rvc2hvcC9jcmVhdGUtYS1kaXZpbmUtYW5nZWwtbW9udGFnZS1pbi1waG90b3Nob3Av" target=\"_blank\">13. Create a Divine Angel Montage in Photoshop</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50dXRvcmlhbDkubmV0L3Bob3Rvc2hvcC9jcmVhdGUtYS1kaXZpbmUtYW5nZWwtbW9udGFnZS1pbi1waG90b3Nob3Av"><img class="aligncenter size-full wp-image-442" title="13AngelMontage" src="http://webventil.de/wp-content/uploads/2009/10/13AngelMontage.jpg" alt="13AngelMontage" width="448" height="280" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5wc2R2YXVsdC5jb20vcGhvdG8tZWZmZWN0L2Rlc2lnbi1hbi1hd2Vzb21lLXNwYWNlLWRhbmNlci1zY2VuZS13aXRoLW5lYnVsYS10ZXh0dXJlLWluLXBob3Rvc2hvcC8=" target=\"_blank\">14. Design an Awesome Space Dancer Scene with Nebula Texture in Photoshop</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5wc2R2YXVsdC5jb20vcGhvdG8tZWZmZWN0L2Rlc2lnbi1hbi1hd2Vzb21lLXNwYWNlLWRhbmNlci1zY2VuZS13aXRoLW5lYnVsYS10ZXh0dXJlLWluLXBob3Rvc2hvcC8=" target=\"_blank\"><img class="aligncenter size-full wp-image-444" title="14Nebula" src="http://webventil.de/wp-content/uploads/2009/10/14Nebula.jpg" alt="14Nebula" width="448" height="280" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1tYWtlLWEtZGFyay1wb3N0LWFwb2NhbHlwdGljLWNpdHktaWxsdXN0cmF0aW9uLw==" target=\"_blank\">15. How to Make a Dark, Post-Apocalyptic City Illustration</a></h3>
<p><a style=\"text-decoration: none;\" href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BzZC50dXRzcGx1cy5jb20vdHV0b3JpYWxzL3Bob3RvLWVmZmVjdHMtdHV0b3JpYWxzL2hvdy10by1tYWtlLWEtZGFyay1wb3N0LWFwb2NhbHlwdGljLWNpdHktaWxsdXN0cmF0aW9uLw==" target=\"_blank\"><img class="aligncenter size-full wp-image-445" title="15Apocalyptic" src="http://webventil.de/wp-content/uploads/2009/10/15Apocalyptic.jpg" alt="15Apocalyptic" width="448" height="280" /></a></p>
 <img src="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=397" width="1" height="1" style="display: none;" /> <p><a href="http://webventil.de/?flattrss_redirect&amp;id=397&amp;md5=eb43ba23f8294449d8559e7ec640e2db" title="Flattr" target="_blank"><img src="http://webventil.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://webventil.de/2009/10/08/15-tolle-tutorials-zur-fotomanipulation-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Templay &#8211; Kreative Downloads</title>
		<link>http://webventil.de/2009/07/10/templay-kreative-downloads/</link>
		<comments>http://webventil.de/2009/07/10/templay-kreative-downloads/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 06:56:25 +0000</pubDate>
		<dc:creator>Arne</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[kreative Downloads]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[templay]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://webventil.de/?p=391</guid>
		<description><![CDATA[Beim Surfen im web ist mir folgende Seite ins Auge gesprungen. Templay, eine Seite für Tutorials und kreative Downloads. Das mag nichts neues sein, aber die Qualität macht den Unterschied. Oft findet man nur Tutorials in englischer Sprache und ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><p>Beim Surfen im web ist mir folgende Seite ins Auge gesprungen. Templay, eine Seite für Tutorials und kreative Downloads. Das mag nichts neues sein, aber die Qualität macht den Unterschied. Oft findet man nur Tutorials in englischer Sprache und bei den deutschen Tutorials, lässt die Qualität zu wünschen übrig. Hier nicht! Templay bietet nicht nur hochwertige Tutorials im Bereich Photoshop, auf der Seite kann man sich auch tolle Icons, Themes, Templates und vieles mehr runterladen.</p>
<blockquote><p>Templay.de ist die Idee eines kleinen Teams, bestehend aus Grafikern, Webdesignern und Programmierern. Diese einem Blog ähnliche Plattform soll in erster Linie eine kreative Hilfe für Dich und Deine Projekte sein. Mit deutschsprachigen Tutorials, Grafiken und Web-Templates möchten wir Dich bei der Umsetzung Deiner Ideen unterstützen.</p></blockquote>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3dlYnZlbnRpbC5kZS93cC1jb250ZW50L3VwbG9hZHMvMjAwOS8wNy90ZW1wbGF5LmpwZw=="><img class="aligncenter size-medium wp-image-392" title="templay" src="http://webventil.de/wp-content/uploads/2009/07/templay-300x123.jpg" alt="templay" width="300" height="123" /></a></p>
<p>Ein Besuch lohnt sich! <a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZW1wbGF5LmRlLw==" target=\"_blank\">http://www.templay.de/</a></p>
 <img src="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=391" width="1" height="1" style="display: none;" /> <p><a href="http://webventil.de/?flattrss_redirect&amp;id=391&amp;md5=38aed7dc2d650e7eefeaa883c6a9e99b" title="Flattr" target="_blank"><img src="http://webventil.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://webventil.de/2009/07/10/templay-kreative-downloads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 brauchbare GIMP Tutorial Seiten</title>
		<link>http://webventil.de/2009/04/11/10-brauchbare-gimp-tutorial-seiten/</link>
		<comments>http://webventil.de/2009/04/11/10-brauchbare-gimp-tutorial-seiten/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 07:45:56 +0000</pubDate>
		<dc:creator>Arne</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[GIMP]]></category>
		<category><![CDATA[Grafikdesign]]></category>
		<category><![CDATA[Photoshop alternative]]></category>

		<guid isPermaLink="false">http://webventil.de/?p=236</guid>
		<description><![CDATA[GIMP, was für GNU Image Manipulation Program steht, ist wahrscheinlich das beste Beispiel, wie ein Open Source Programm es mit seinem kommerziellen Bruder aufnehmen kann. Mit vielen Funktionen, Filtern und einer benutzerfreundlichen Oberfläche hat GIMP viele Freunde im Internet ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><p>GIMP, was für <em>GNU Image Manipulation Program</em> steht, ist wahrscheinlich das beste Beispiel, wie ein Open Source Programm es mit seinem kommerziellen Bruder aufnehmen kann. Mit vielen Funktionen, Filtern und einer benutzerfreundlichen Oberfläche hat GIMP viele Freunde im Internet gefunden.</p>
<p>In diesem Artikel finden sie 10 Seiten, die Ihnen des erlernen von GIMP, vereinfachen können.</p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3B1dGVyYWFsYWRpbi5ibG9nc3BvdC5jb20v" target=\"_blank\">PA Blog</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3B1dGVyYWFsYWRpbi5ibG9nc3BvdC5jb20v" target=\"_blank\"><img class="alignnone size-full wp-image-257" title="pa_blog" src="http://webventil.de/wp-content/uploads/2009/04/pa_blog.jpg" alt="pa_blog" width="550" height="200" /><span id="more-236"></span></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL21lZXR0aGVnaW1wLm9yZy8=" target=\"_blank\">Meet the GIMP</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL21lZXR0aGVnaW1wLm9yZy8=" target=\"_blank\"><img class="alignnone size-full wp-image-258" title="meet_gimp" src="http://webventil.de/wp-content/uploads/2009/04/meet_gimp.jpg" alt="meet_gimp" width="550" height="200" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5naW1wdGFsay5jb20vZm9ydW0v" target=\"_blank\">Gimp Talk</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5naW1wdGFsay5jb20vZm9ydW0v" target=\"_blank\"><img class="alignnone size-full wp-image-260" title="gimp_talk" src="http://webventil.de/wp-content/uploads/2009/04/gimp_talk.jpg" alt="gimp_talk" width="550" height="200" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2dpbXAtdHV0b3JpYWxzLm5ldC8=" target=\"_blank\">Gimp Tutorials</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2dpbXAtdHV0b3JpYWxzLm5ldC8=" target=\"_blank\"><img class="alignnone size-full wp-image-259" title="gimp_tutorials" src="http://webventil.de/wp-content/uploads/2009/04/gimp_tutorials.jpg" alt="gimp_tutorials" width="550" height="200" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2dpbXBvbG9neS5jb20v" target=\"_blank\">Gimpology</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2dpbXBvbG9neS5jb20v" target=\"_blank\"><img class="alignnone size-full wp-image-261" title="gimpology" src="http://webventil.de/wp-content/uploads/2009/04/gimpology.jpg" alt="gimpology" width="550" height="200" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5naW1wLXR1dG9yaWFscy5jb20vaW5kZXgucGhw">Gimp &#8211; Tutorials</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5naW1wLXR1dG9yaWFscy5jb20vaW5kZXgucGhw" target=\"_blank\"><img class="alignnone size-full wp-image-263" title="gimp_tuts" src="http://webventil.de/wp-content/uploads/2009/04/gimp_tuts.jpg" alt="gimp_tuts" width="550" height="200" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2d0dXRzLmNvbS8=" target=\"_blank\">Gtuts</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2d0dXRzLmNvbS8=" target=\"_blank\"><img class="alignnone size-full wp-image-264" title="gtuts" src="http://webventil.de/wp-content/uploads/2009/04/gtuts.jpg" alt="gtuts" width="550" height="200" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5naW1wLm9yZy90dXRvcmlhbHMv" target=\"_blank\">Gimp / Tutorials</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5naW1wLm9yZy90dXRvcmlhbHMv" target=\"_self\"><img class="alignnone size-full wp-image-269" title="gimp_tutorial" src="http://webventil.de/wp-content/uploads/2009/04/gimp_tutorial.jpg" alt="gimp_tutorial" width="550" height="200" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5naW1wdXNlcnMuY29tLw==" target=\"_blank\">Gimp Users</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5naW1wdXNlcnMuY29tLw==" target=\"_blank\"><img class="alignnone size-full wp-image-266" title="gimp_users" src="http://webventil.de/wp-content/uploads/2009/04/gimp_users.jpg" alt="gimp_users" width="550" height="200" /></a></p>
<h3><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5naW1wZ3VydS5vcmcv" target=\"_blank\">Gimpguru</a></h3>
<p><a href="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5naW1wZ3VydS5vcmcv" target=\"_blank\"><img class="alignnone size-full wp-image-267" title="gimpguru" src="http://webventil.de/wp-content/uploads/2009/04/gimpguru.jpg" alt="gimpguru" width="550" height="200" /></a></p>
 <img src="http://webventil.de/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=236" width="1" height="1" style="display: none;" /> <p><a href="http://webventil.de/?flattrss_redirect&amp;id=236&amp;md5=7cda21986b3f4f1599e84792e50030b0" title="Flattr" target="_blank"><img src="http://webventil.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://webventil.de/2009/04/11/10-brauchbare-gimp-tutorial-seiten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

