<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>U-Labs Community - HTML</title>
		<link>https://u-labs.de/forum/</link>
		<description>Fragen und Probleme zur Auszeichnungssprache HTML,  XHTML, XML und HTML5.</description>
		<language>de</language>
		<lastBuildDate>Wed, 13 May 2026 09:03:49 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>1</ttl>
		<image>
			<url>https://u-labs.de/forum/images/ulabs/misc/rss.png</url>
			<title>U-Labs Community - HTML</title>
			<link>https://u-labs.de/forum/</link>
		</image>
		<item>
			<title>Umbrüche in HTML Tags valide?</title>
			<link>html-99/umbrueche-in-html-tags-valide-37290?goto=newpost</link>
			<pubDate>Tue, 23 Jun 2015 14:55:17 GMT</pubDate>
			<description>Hi, 
 
ich möchte Html-Tags dynamisch generieren, da kommt es vor, dass ich z.B. anhand einer Bedingung eine Klasse oder ein Attribut einfügen...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
ich möchte Html-Tags dynamisch generieren, da kommt es vor, dass ich z.B. anhand einer Bedingung eine Klasse oder ein Attribut einfügen möchte:<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;div &lt;?php if($class) echo 'class=&quot;' . $class . '&quot;'; ?&gt;</span>&gt;<br />
...<br />
<span style="color:#000080">&lt;/div&gt;</span></code><hr />
</div>Wenn ich das alles in eine Zeile lege wird es aber sehr unübersichtlich, ich würde es daher lieber so machen:<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;div <br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;?php if(class)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo 'class=&quot;' . $class . '&quot;';<br />
&nbsp; &nbsp; &nbsp; &nbsp; ?&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; ...<br />
<span style="color:#000080">&lt;/div&gt;</span></code><hr />
</div>Durch die Umbrüche kommt aber das fertige HTML durcheinander... <br />
Anstatt<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;div class=<span style="color:#0000FF">&quot;Header&quot;</span>&gt;</span>...<span style="color:#000080">&lt;/div&gt;</span></code><hr />
</div>bekomme ich dann z.B.<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;div <br />
&nbsp; &nbsp; &nbsp; &nbsp; class=&quot;Header&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &gt;</span>...<br />
<span style="color:#000080">&lt;/div&gt;</span></code><hr />
</div>Zu funktionieren scheint es ja, aber ist das schlimm? Also darf man Umbrüche dazwischen haben oder ist das eigentlich verboten und dass es funktioniert liegt nur daran dass mein Browser sehr fehlertolerant ist? Möchte ungerne dass ich jetzt damit etwas mache und später feststelle dass es Probleme gibt...</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>PartyFreak</dc:creator>
			<guid isPermaLink="true">html-99/umbrueche-in-html-tags-valide-37290</guid>
		</item>
		<item>
			<title>HTML: Bilder anordnen mit Links?</title>
			<link>html-99/html-bilder-anordnen-mit-links-36678?goto=newpost</link>
			<pubDate>Tue, 24 Mar 2015 19:10:38 GMT</pubDate>
			<description>Hi, 
 
eigentlich dachte ich, ich könnte das, jedoch bin ich momentan am verzweifeln an den Basis-Sachen :D 
 
Mein Problem ist (ich weiß, es ist...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
eigentlich dachte ich, ich könnte das, jedoch bin ich momentan am verzweifeln an den Basis-Sachen :D<br />
<br />
Mein Problem ist (ich weiß, es ist noch nicht 100% richtig angeordnet),<br />
ich habe einen div-bereich mit nem hintergrund und positioniere dadrauf mit padding und einer fixed-position bilder.<br />
Diese Bilder sollen einen Link haben.<br />
<br />
Auf zwei der Bilder kann ich klicken, auf die restlichen jedoch nicht...<br />
Was mache ich falsch? :D<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;div style=<span style="color:#0000FF">&quot;width:379px; height:586px; background-image: url('images/Person.png'); border: 2px solid;&quot;</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;div style=<span style="color:#0000FF">&quot;position:fixed; padding-top:45px; padding-left:142px;&quot;</span>&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;unequip/head&quot;</span>&gt;</span><span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;images/figure-empty.png&quot;</span> width=<span style="color:#0000FF">&quot;90&quot;</span> height=<span style="color:#0000FF">&quot;90&quot;</span> border=<span style="color:#0000FF">&quot;0&quot;</span> alt=<span style="color:#0000FF">&quot;Head&quot;</span>&gt;</span><span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/div&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;div style=<span style="color:#0000FF">&quot;position:fixed; padding-top:180px; padding-left:142px;&quot;</span>&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;unequip/torso&quot;</span>&gt;</span><span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;images/figure-empty.png&quot;</span> width=<span style="color:#0000FF">&quot;90&quot;</span> height=<span style="color:#0000FF">&quot;90&quot;</span> border=<span style="color:#0000FF">&quot;0&quot;</span> alt=<span style="color:#0000FF">&quot;Torso&quot;</span>&gt;</span><span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/div&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;div style=<span style="color:#0000FF">&quot;position:fixed; padding-top:220px;&quot;</span>&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;unequip/rightHand&quot;</span>&gt;</span><span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;images/figure-empty.png&quot;</span> width=<span style="color:#0000FF">&quot;90&quot;</span> height=<span style="color:#0000FF">&quot;90&quot;</span> border=<span style="color:#0000FF">&quot;0&quot;</span> alt=<span style="color:#0000FF">&quot;Right Hand&quot;</span>&gt;</span><span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/div&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;div style=<span style="color:#0000FF">&quot;position:fixed; padding-top:220px; padding-left:290px;&quot;</span>&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;unequip/leftHand&quot;</span>&gt;</span><span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;images/figure-empty.png&quot;</span> width=<span style="color:#0000FF">&quot;90&quot;</span> height=<span style="color:#0000FF">&quot;90&quot;</span> border=<span style="color:#0000FF">&quot;0&quot;</span> alt=<span style="color:#0000FF">&quot;Left Hand&quot;</span>&gt;</span><span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/div&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;div style=<span style="color:#0000FF">&quot;position:fixed; padding-top:480px; padding-left:142px;&quot;</span>&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;unequip/feet&quot;</span>&gt;</span><span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;images/figure-empty.png&quot;</span> width=<span style="color:#0000FF">&quot;90&quot;</span> height=<span style="color:#0000FF">&quot;90&quot;</span> border=<span style="color:#0000FF">&quot;0&quot;</span> alt=<span style="color:#0000FF">&quot;Feet&quot;</span>&gt;</span><span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/div&gt;</span><br />
<span style="color:#000080">&lt;/div&gt;</span></code><hr />
</div><img src="https://u-labs.de/forum/attachment.php?attachmentid=8760&amp;d=1427226365" border="0" alt="Name:  Person.png
Hits: 873
Größe:  91,1 KB" class="thumbnail" style="float:CONFIG" /><br />
<br />
Live-Demo:  <a href="http://web541.asphosting.co.at/Person/" target="_blank" rel="nofollow">http://web541.asphosting.co.at/Person/</a><br />
<br />
Liebe Grüße<br />
Baumstumpf</div>


	<div style="padding:10px">

	

	
		<fieldset class="fieldset">
			<legend>Angehängte Grafiken</legend>
				<div style="padding:10px">
				<img class="attach" src="https://u-labs.de/forum/attachment.php?attachmentid=8760&amp;stc=1&amp;d=1427226365" alt="" />&nbsp;
			</div>
		</fieldset>
	

	

	

	</div>
]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Baumstumpf</dc:creator>
			<guid isPermaLink="true">html-99/html-bilder-anordnen-mit-links-36678</guid>
		</item>
		<item>
			<title><![CDATA[Mobile Darstellung's Problem]]></title>
			<link>html-99/mobile-darstellung-s-problem-36417?goto=newpost</link>
			<pubDate>Wed, 18 Feb 2015 19:17:03 GMT</pubDate>
			<description>ich habe ein  Problem und zwar, wenn ich über Handy rauf gehe, sieht es folgendermaßen aus: 
Anhang 8640...</description>
			<content:encoded><![CDATA[<div>ich habe ein  Problem und zwar, wenn ich über Handy rauf gehe, sieht es folgendermaßen aus:<br />
<img src="https://u-labs.de/forum/attachment.php?attachmentid=8640&amp;d=1424286999" border="0" alt="Name:  Screenshot_2015-02-18-17-21-20[1].jpg
Hits: 716
Größe:  36,1 KB" class="thumbnail" style="float:CONFIG" /><br />
<img src="https://u-labs.de/forum/attachment.php?attachmentid=8641&amp;d=1424287014" border="0" alt="Name:  Screenshot_2015-02-18-17-29-50[1].jpg
Hits: 734
Größe:  46,9 KB" class="thumbnail" style="float:CONFIG" /><br />
Im Vertikalen Bild sieht man, wie der HG richtig aussieht, aber im Horizontalen nicht.Dazu kommt auch, das im Horizontalen Bild der Text eine große Lücke ist, obwohl ich es richtig angepasst habe und im Vertikalen ist der Text weit oben, zu weit.Was ist das Problem? Hier der HTML und Tut mir leid, hab das schnell kopiert und nicht darauf geachtet, die HP ist auch abgelaufen, hier nochmal in Schön:<br />
HTML:<br />
<div class="bbcode_container">
	<div class="bbcode_description">PHP-Code:</div>
	<hr /><code class="bbcode_code"><code><span style="color: #000000">
<span style="color: #0000BB"></span><span style="color: #007700">$(</span><span style="color: #0000BB">document</span><span style="color: #007700">).</span><span style="color: #0000BB">ready</span><span style="color: #007700">(function&nbsp;()&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;$(</span><span style="color: #DD0000">'body'</span><span style="color: #007700">).</span><span style="color: #0000BB">bgStretcher</span><span style="color: #007700">({<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">images</span><span style="color: #007700">:&nbsp;&#91;</span><span style="color: #DD0000">'images/slide-1.jpg'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'images/slide-2.jpg'</span><span style="color: #007700">&#93;,<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">imageWidth</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">1600</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">imageHeight</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">964</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">resizeProportionally</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">true</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">slideDirection</span><span style="color: #007700">:&nbsp;</span><span style="color: #DD0000">'N'</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">slideShowSpeed</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">2000</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">transitionEffect</span><span style="color: #007700">:&nbsp;</span><span style="color: #DD0000">'fade'</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">sequenceMode</span><span style="color: #007700">:&nbsp;</span><span style="color: #DD0000">'normal'</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">pagination</span><span style="color: #007700">:&nbsp;</span><span style="color: #DD0000">'#nav'<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">});<br />});<br />&lt;/</span><span style="color: #0000BB">script</span><span style="color: #007700">&gt;&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code></code><hr />
</div>CSS:<br />
<div class="bbcode_container">
	<div class="bbcode_description">PHP-Code:</div>
	<hr /><code class="bbcode_code"><code><span style="color: #000000">
<span style="color: #0000BB"></span><span style="color: #FF8000">/**********bgstretcher*************/<br /><br /></span><span style="color: #007700">.</span><span style="color: #0000BB">bgstretcher&nbsp;</span><span style="color: #007700">{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #0000BB">black<br />&nbsp;&nbsp;&nbsp;&nbsp;overflow</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">hidden</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">width</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">100</span><span style="color: #007700">%;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">height</span><span style="color: #007700">:</span><span style="color: #0000BB">100</span><span style="color: #007700">%;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">position</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">fixed&nbsp;</span><span style="color: #007700">!</span><span style="color: #0000BB">important</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">z</span><span style="color: #007700">-</span><span style="color: #0000BB">index</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">top</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">left</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">;<br /><br />}<br />.</span><span style="color: #0000BB">bgstretcher&nbsp;UL</span><span style="color: #007700">,<br />.</span><span style="color: #0000BB">bgstretcher&nbsp;UL&nbsp;LI&nbsp;</span><span style="color: #007700">{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">position</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">absolute</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">top</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">left</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">z</span><span style="color: #007700">-</span><span style="color: #0000BB">index</span><span style="color: #007700">:</span><span style="color: #0000BB">1</span><span style="color: #007700">;<br />}<br />.</span><span style="color: #0000BB">bgstretcher&nbsp;UL</span><span style="color: #007700">,<br />.</span><span style="color: #0000BB">bgstretcher&nbsp;UL&nbsp;LI&nbsp;</span><span style="color: #007700">{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">margin</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">padding</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;list-</span><span style="color: #0000BB">style</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">none</span><span style="color: #007700">;<br />}<br /><br />.</span><span style="color: #0000BB">bgstretcher</span><span style="color: #007700">-</span><span style="color: #0000BB">area</span><span style="color: #007700">,.</span><span style="color: #0000BB">bgstretcher</span><span style="color: #007700">-</span><span style="color: #0000BB">page</span><span style="color: #007700">{</span><span style="color: #0000BB">height</span><span style="color: #007700">:</span><span style="color: #0000BB">100</span><span style="color: #007700">%}<br /><br />.</span><span style="color: #0000BB">nav</span><span style="color: #007700">-</span><span style="color: #0000BB">buttons</span><span style="color: #007700">{</span><span style="color: #0000BB">text</span><span style="color: #007700">-</span><span style="color: #0000BB">align</span><span style="color: #007700">:</span><span style="color: #0000BB">center</span><span style="color: #007700">;</span><span style="color: #0000BB">padding</span><span style="color: #007700">-</span><span style="color: #0000BB">bottom</span><span style="color: #007700">:</span><span style="color: #0000BB">17px</span><span style="color: #007700">;}<br /></span><span style="color: #FF8000">#nav{overflow:hidden;display:inline-block}<br />#nav&nbsp;li{float:left;overflow:hidden;margin:0&nbsp;10px}<br />#nav&nbsp;li&nbsp;a{display:block;background:url(../images/pags.png)&nbsp;no-repeat&nbsp;0&nbsp;0;<br /></span><span style="color: #0000BB">width</span><span style="color: #007700">:</span><span style="color: #0000BB">19px</span><span style="color: #007700">;</span><span style="color: #0000BB">height</span><span style="color: #007700">:</span><span style="color: #0000BB">19px</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">line</span><span style="color: #007700">-</span><span style="color: #0000BB">height</span><span style="color: #007700">:</span><span style="color: #0000BB">0</span><span style="color: #007700">;</span><span style="color: #0000BB">font</span><span style="color: #007700">-</span><span style="color: #0000BB">size</span><span style="color: #007700">:</span><span style="color: #0000BB">0</span><span style="color: #007700">;<br />}<br /></span><span style="color: #FF8000">#nav&nbsp;li&nbsp;a:hover,#nav&nbsp;li.showPage&nbsp;a{background-position:&nbsp;0&nbsp;bottom}&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code></code><hr />
</div>Sonst hier noch die HP: <a href="http://bazs1.esy.es/" target="_blank" rel="nofollow">Youventa - Wohlbefinden &amp; SchÃ¶nheit</a><br />
Danke schonmal für eure Hilfe.</div>


	<div style="padding:10px">

	

	
		<fieldset class="fieldset">
			<legend>Angehängte Grafiken</legend>
				<div style="padding:10px">
				<img class="attach" src="https://u-labs.de/forum/attachment.php?attachmentid=8640&amp;stc=1&amp;d=1424286999" alt="" />&nbsp;<img class="attach" src="https://u-labs.de/forum/attachment.php?attachmentid=8641&amp;stc=1&amp;d=1424287014" alt="" />&nbsp;
			</div>
		</fieldset>
	

	

	

	</div>
]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Bazs</dc:creator>
			<guid isPermaLink="true">html-99/mobile-darstellung-s-problem-36417</guid>
		</item>
		<item>
			<title>Wie passe ich meine Seite an?</title>
			<link>html-99/wie-passe-ich-meine-seite-an-35993?goto=newpost</link>
			<pubDate>Thu, 08 Jan 2015 13:20:41 GMT</pubDate>
			<description>Guten Tag Community, 
 
ich versuche die ganze Zeit meine Seite wie auf den folgenden Screen anzupassen aber bei mir sieht es nicht so aus wie ichs...</description>
			<content:encoded><![CDATA[<div>Guten Tag Community,<br />
<br />
ich versuche die ganze Zeit meine Seite wie auf den folgenden Screen anzupassen aber bei mir sieht es nicht so aus wie ichs wollte, hier erstmal die screens:<br />
[HIDE]<br />
So soll es aussehen:<br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<a href="https://u-labs.de/forum/attachment.php?attachmentid=8470&amp;d=1420722988" id="attachment8470" rel="Lightbox_0" ><img src="https://u-labs.de/forum/attachment.php?attachmentid=8470&amp;d=1420722988&amp;thumb=1" border="0" alt="Klicke auf die Grafik für eine größere Ansicht&nbsp;

Name:	Cjhdh.jpg&nbsp;
Hits:	285&nbsp;
Größe:	434,6 KB&nbsp;
ID:	8470" class="thumbnail" style="float:CONFIG" /></a>
</div>
</div>
</div><br />
<br />
So sieht es aber aus:<br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<a href="https://u-labs.de/forum/attachment.php?attachmentid=8471&amp;d=1420723015" id="attachment8471" rel="Lightbox_0" ><img src="https://u-labs.de/forum/attachment.php?attachmentid=8471&amp;d=1420723015&amp;thumb=1" border="0" alt="Klicke auf die Grafik für eine größere Ansicht&nbsp;

Name:	my_technobase_1920x108v743.jpg&nbsp;
Hits:	294&nbsp;
Größe:	119,4 KB&nbsp;
ID:	8471" class="thumbnail" style="float:CONFIG" /></a>
</div>
</div>
</div><br />
<br />
Der HTML Code (den hat mein Kollege so erstellt) sieht folgendermaßen aus:<br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;?php<br />
$page = $_GET&#91;&quot;page&quot;&#93;;<br />
if ($page == &quot;&quot;) { echo $page = &quot;&quot;;}<br />
?&gt;</span><br />
<span style="color:#000080">&lt;!DOCTYPE HTML&gt;</span><br />
<span style="color:#000080">&lt;html&gt;</span><br />
<span style="color:#000080">&lt;head&gt;</span><br />
<span style="color:#000080">&lt;meta charset=<span style="color:#0000FF">&quot;UTF-8&quot;</span>&gt;</span><br />
<span style="color:#000080">&lt;title&gt;</span>Teccistopia<span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;link rel=<span style="color:#0000FF">&quot;stylesheet&quot;</span> href=<span style="color:#0000FF">&quot;css/style.css&quot;</span> type=<span style="color:#0000FF">&quot;text/css&quot;</span>&gt;</span><br />
<span style="color:#800000">&lt;script src=<span style="color:#0000FF">&quot;js/snow.js&quot;</span> type=<span style="color:#0000FF">&quot;text/javascript&quot;</span>&gt;</span><span style="color:#800000">&lt;/script&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><br />
<span style="color:#000080">&lt;body&gt;</span><br />
<span style="color:#000080">&lt;div&gt;</span><br />
<span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;menu&quot;</span>&gt;</span><br />
<span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;index.php?page=home&quot;</span> class=<span style="color:#0000FF">&quot;logo&quot;</span>&gt;</span><span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;https://u-labs.de/images/banner.png&quot;</span> alt=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span><span style="color:#008000">&lt;/a&gt;</span><br />
<span style="color:#000080">&lt;/div&gt;</span><br />
<span style="color:#008000">&lt;a style=<span style="color:#0000FF">&quot;color:#FF5D00; float:right; font-size:22px;&quot;</span> href=<span style="color:#0000FF">&quot;/forum/&quot;</span>&gt;</span> Projekte<span style="color:#008000">&lt;/a&gt;</span><br />
<span style="color:#008000">&lt;a style=<span style="color:#0000FF">&quot;color:#FF5D00; float:right; font-size:22px;&quot;</span> href=<span style="color:#0000FF">&quot;#&quot;</span>&gt;</span>|<span style="color:#008000">&lt;/a&gt;</span><br />
<span style="color:#008000">&lt;a style=<span style="color:#0000FF">&quot;color:#FF5D00; float:right; font-size:22px;&quot;</span> href=<span style="color:#0000FF">&quot;#&quot;</span>&gt;</span> Finanzierung <span style="color:#008000">&lt;/a&gt;</span><br />
<span style="color:#008000">&lt;a style=<span style="color:#0000FF">&quot;color:#FF5D00; float:right; font-size:22px;&quot;</span> href=<span style="color:#0000FF">&quot;#&quot;</span>&gt;</span>|<span style="color:#008000">&lt;/a&gt;</span><br />
<span style="color:#008000">&lt;a style=<span style="color:#0000FF">&quot;color:#FF5D00; float:right; font-size:22px;&quot;</span> href=<span style="color:#0000FF">&quot;#&quot;</span>&gt;</span> Team <span style="color:#008000">&lt;/a&gt;</span><br />
<span style="color:#008000">&lt;a style=<span style="color:#0000FF">&quot;color:#FF5D00; float:right; font-size:22px;&quot;</span> href=<span style="color:#0000FF">&quot;#&quot;</span>&gt;</span>|<span style="color:#008000">&lt;/a&gt;</span><br />
<span style="color:#008000">&lt;a style=<span style="color:#0000FF">&quot;color:#FF5D00; float:right; font-size:22px;&quot;</span> href=<span style="color:#0000FF">&quot;#&quot;</span>&gt;</span> Server <span style="color:#008000">&lt;/a&gt;</span><br />
<span style="color:#008000">&lt;a style=<span style="color:#0000FF">&quot;color:#FF5D00; float:right; font-size:22px;&quot;</span> href=<span style="color:#0000FF">&quot;#&quot;</span>&gt;</span>|<span style="color:#008000">&lt;/a&gt;</span><br />
<span style="color:#008000">&lt;a style=<span style="color:#0000FF">&quot;color:#FF5D00; float:right; font-size:22px;&quot;</span> href=<span style="color:#0000FF">&quot;#&quot;</span>&gt;</span>Startseite <span style="color:#008000">&lt;/a&gt;</span><br />
<span style="color:#000080">&lt;/div&gt;</span><br />
<span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;includearea&quot;</span> style=<span style="color:#0000FF">&quot;margin: 0 auto;&quot;</span>&gt;</span><br />
<span style="color:#000080">&lt;?php <br />
?&gt;</span><br />
<span style="color:#000080">&lt;/div&gt;</span><br />
<span style="color:#000080">&lt;div style=<span style="color:#0000FF">&quot;position:absolute; bottom:10px; background-color:#0094FF; opacity:0.5; filter:alpha(opacity=30); width:100%; <br />
<br />
id=footer&quot;</span>&gt;</span><br />
<span style="color:#000080">&lt;p&gt;</span>Copyright (C) 2014-2015 Domenik Landgraf. All rights reserved.<span style="color:#000080">&lt;/p&gt;</span><br />
<span style="color:#000080">&lt;/div&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>
</div>
</div>
</div><br />
[/HIDE]<br />
Hoffentlich könnt ihr mir helfen :x<br />
<br />
Die Orange farbigen Punkte sollen Social Icons sein sprich Facebook, Twitter und Google.</div>


	<div style="padding:10px">

	
		<fieldset class="fieldset">
			<legend>Miniaturansichten angehängter Grafiken</legend>
			<div style="padding:10px">
			
<a href="https://u-labs.de/forum/attachment.php?attachmentid=8470&amp;d=1420722988" 
rel="Lightbox_400320" id="attachment8470"
><img class="thumbnail" src="https://u-labs.de/forum/attachment.php?attachmentid=8470&amp;stc=1&amp;thumb=1&amp;d=1420722988" 
alt="Klicke auf die Grafik für eine größere Ansicht&nbsp;

Name:	Cjhdh.jpg&nbsp;
Hits:	-&nbsp;
Größe:	434,6 KB&nbsp;
ID:	8470"/></a>
&nbsp;

<a href="https://u-labs.de/forum/attachment.php?attachmentid=8471&amp;d=1420723015" 
rel="Lightbox_400320" id="attachment8471"
><img class="thumbnail" src="https://u-labs.de/forum/attachment.php?attachmentid=8471&amp;stc=1&amp;thumb=1&amp;d=1420723015" 
alt="Klicke auf die Grafik für eine größere Ansicht&nbsp;

Name:	my_technobase_1920x108v743.jpg&nbsp;
Hits:	-&nbsp;
Größe:	119,4 KB&nbsp;
ID:	8471"/></a>
&nbsp;

			</div>
		</fieldset>
	

	

	

	

	</div>
]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Bazs</dc:creator>
			<guid isPermaLink="true">html-99/wie-passe-ich-meine-seite-an-35993</guid>
		</item>
		<item>
			<title>$(window).height() liefert zu hohe Größe?</title>
			<link>html-99/window-height-liefert-zu-hohe-groesse-35380?goto=newpost</link>
			<pubDate>Thu, 20 Nov 2014 22:08:50 GMT</pubDate>
			<description>Flo hier, 
 
ich arbeite gerade an einer kleinen Seite und versuche DIVs per Javascript die volle Höhe des Browserfensters zu geben: 
var W =...</description>
			<content:encoded><![CDATA[<div>Flo hier,<br />
<br />
ich arbeite gerade an einer kleinen Seite und versuche DIVs per Javascript die volle Höhe des Browserfensters zu geben:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
var W = $(window).width(), H = $(window).height();        var _nH = &quot;-&quot; + H + &quot;px&quot;;<br />
<br />
<br />
        $( document ).ready(function() {<br />
<br />
<br />
            fs_size();<br />
<br />
<br />
            function fs_size() {<br />
<br />
<br />
                $('.left-column').css({ &quot;height&quot;: H });<br />
                $('.right-column').css({ &quot;height&quot;: H });<br />
                $('.section').css({ &quot;min-height&quot;: H });<br />
            }<br />
            $(window).bind('resize', function() { fs_size(); });<br />
        });
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
<b>Mein Problem nun</b>: Die DIVs bekommen ca. 30px zuviel an Höhe. <br />
<br />
Ich hab hier mal ein Beispiel-Fiddle gebaut: <a href="http://jsfiddle.net/7Lg83tkL/" target="_blank" rel="nofollow">fs error - JSFiddle</a><br />
Auch wenn das animieren nicht ganz funktioniert, wenn ihr den rechten Teil ganz langsam scrollt, seht ihr, dass noch 30px extra kommen bevor der <font color="#008000"><b>grüne</b></font> DIV anfängt.<br />
<br />
Weiß jemand warum, oder wie man das ganze behebt?<br />
<br />
Danke.<br />
<br />
Flo,</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Flo</dc:creator>
			<guid isPermaLink="true">html-99/window-height-liefert-zu-hohe-groesse-35380</guid>
		</item>
		<item>
			<title>Kein HTML lernen dank Dreamweaver?</title>
			<link>html-99/kein-html-lernen-dank-dreamweaver-33530?goto=newpost</link>
			<pubDate>Tue, 01 Jul 2014 08:50:18 GMT</pubDate>
			<description>Hi, 
 
ich habe mich in letzter Zeit intensiver mit PHP und HTML beschäftigt und bin nun auf Adobe Dreamweaver gestoßen. Da habe ich festgestellt,...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
ich habe mich in letzter Zeit intensiver mit PHP und HTML beschäftigt und bin nun auf Adobe Dreamweaver gestoßen. Da habe ich festgestellt, dass mit Dreamweaver jeder minderbemittelte Person Webseiten zusammen klicken kann. Ohne auch nur Ansatzweise Ahnung zu haben was sie da eigentlich gerade macht. <br />
Sicher kann man damit wohl nicht alles machen und jeden Sonderfall abdecken. Aber ich habe im Moment den Eindruck, das sich schon recht viel mit zusammenklicken realisieren lässt. <br />
<br />
Daher stelle ich mal folgende These in den Raum: HTML lernen ist eher unnötig geworden, da man mit Dreamweaver doch alles zusammenklicken kann. <br />
Mich würde interessieren, was erfahrenere Entwickler zu meiner These sagen.</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Tony Montana</dc:creator>
			<guid isPermaLink="true">html-99/kein-html-lernen-dank-dreamweaver-33530</guid>
		</item>
		<item>
			<title>HTML Logo für jeden Bildschirm angepasst</title>
			<link>html-99/html-logo-fuer-jeden-bildschirm-angepasst-26275?goto=newpost</link>
			<pubDate>Sat, 07 Sep 2013 17:49:56 GMT</pubDate>
			<description><![CDATA[Ich habe eine Seite mittels HTML "programmiert". Wenn ich jedoch mit einer größeren Bildschirmauflösung darauf zugreife, sieht das Bild nicht so aus...]]></description>
			<content:encoded><![CDATA[<div>Ich habe eine Seite mittels HTML &quot;programmiert&quot;. Wenn ich jedoch mit einer größeren Bildschirmauflösung darauf zugreife, sieht das Bild nicht so aus wie bei mir sondern ist recht klein.<br />
<br />
Wie passe ich dies an?</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>MoveJockey</dc:creator>
			<guid isPermaLink="true">html-99/html-logo-fuer-jeden-bildschirm-angepasst-26275</guid>
		</item>
		<item>
			<title>Problem Tabelle/Container</title>
			<link>html-99/problem-tabelle-container-23821?goto=newpost</link>
			<pubDate>Fri, 24 May 2013 22:06:06 GMT</pubDate>
			<description>Hallo, 
 
ich bin gerade dabei eine Homepage für ein Schulprojekt zu erstellen. 
Mein Problem ist jetzt, dass ich eine Tabelle erstellen will, deren...</description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
ich bin gerade dabei eine Homepage für ein Schulprojekt zu erstellen.<br />
Mein Problem ist jetzt, dass ich eine Tabelle erstellen will, deren Spalten prozentual die gleiche Breite haben, also:<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#008080">&lt;table border=<span style="color:#0000FF">&quot;1&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;colgroup&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;col width=<span style="color:#0000FF">&quot;20%&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;col width=<span style="color:#0000FF">&quot;20%&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;col width=<span style="color:#0000FF">&quot;20%&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;col width=<span style="color:#0000FF">&quot;20%&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;col width=<span style="color:#0000FF">&quot;20%&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/colgroup&gt;</span></code><hr />
</div>Wenn ich das aber so mache, werden alle mit einer sehr geringen Breite erstellt, ändere ich aber eine der Spalten von % auf px, werden die übrigen Spalten richtig angezeigt.<br />
<br />
Außerdem hab ich noch so meine Probleme mit dem Container, in dem diese Tabelle ist, wie bekomme ich die zentriert?<br />
<br />
Vielen Dank schonmal. :)<br />
<br />
Mfg Scarya</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Scarya</dc:creator>
			<guid isPermaLink="true">html-99/problem-tabelle-container-23821</guid>
		</item>
		<item>
			<title><![CDATA[[Chrome] Quelltext dauerhaft bearbeitet lassen?]]></title>
			<link>html-99/chrome-quelltext-dauerhaft-bearbeitet-lassen-22326?goto=newpost</link>
			<pubDate>Wed, 10 Apr 2013 20:58:44 GMT</pubDate>
			<description>Hey! 
 
Und zwar möchte ich gern wissen, wie ich den Quelltext von Google Chrome dauerhaft bearbeitet lassen kann? 
Oder brauch dafür irgendwie eine...</description>
			<content:encoded><![CDATA[<div>Hey!<br />
<br />
Und zwar möchte ich gern wissen, wie ich den Quelltext von Google Chrome dauerhaft bearbeitet lassen kann?<br />
Oder brauch dafür irgendwie eine Erweiterung? Habe dazu nämlich nichts gefunden... <br />
Dachte da irgendwie an nen Theme Designer der das dann für mich übernimmt finde dazu aber nichts.<br />
<br />
Wäre euch Dankbar für Hilfe! :)<br />
<br />
Gruß.</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Gangstersheep</dc:creator>
			<guid isPermaLink="true">html-99/chrome-quelltext-dauerhaft-bearbeitet-lassen-22326</guid>
		</item>
		<item>
			<title>HTML5 in HTML4?</title>
			<link>html-99/html5-in-html4-21223?goto=newpost</link>
			<pubDate>Thu, 07 Mar 2013 15:39:07 GMT</pubDate>
			<description><![CDATA[Hey, 
 
kann man Sachen die es nur in HTML5 gibt in HTML4 benutzen? 
Also wenn ich so eine HTML Seite habe 
 
 
Code: 
--------- 
<!DOCTYPE HTML...]]></description>
			<content:encoded><![CDATA[<div>Hey,<br />
<br />
kann man Sachen die es nur in HTML5 gibt in HTML4 benutzen?<br />
Also wenn ich so eine HTML Seite habe<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;<br />
&nbsp; &nbsp; &nbsp;  &quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Beschreibung der Seite&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code><hr />
</div>Kann ich da dann z.B. Canvas oder so benutzen? Oder geht das nur wenn ich eine HTML5 Seite mache?</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>ThunderStorm</dc:creator>
			<guid isPermaLink="true">html-99/html5-in-html4-21223</guid>
		</item>
		<item>
			<title>Twitter Bootstrap - Schwarzer Balken an der Navigation</title>
			<link>html-99/twitter-bootstrap-schwarzer-balken-an-der-navigation-19782?goto=newpost</link>
			<pubDate>Mon, 14 Jan 2013 16:47:46 GMT</pubDate>
			<description>Hallo, 
 
ich bin dabei eine Webseite zu programmieren, nur leider gibts einen Schönheitsfehler bei der Navigation. 
Sobald ich ein Login einbinde,...</description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
ich bin dabei eine Webseite zu programmieren, nur leider gibts einen Schönheitsfehler bei der Navigation.<br />
Sobald ich ein Login einbinde, entsteht ein schwarzer, sehr dünner Balken, der sich unter der Navigation bildet.<br />
<br />
Mein HTML-Code ist folgender:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">PHP-Code:</div>
	<hr /><code class="bbcode_code"><code><span style="color: #000000">
<span style="color: #0000BB">&nbsp;</span><span style="color: #007700">&lt;</span><span style="color: #0000BB">div&nbsp;id</span><span style="color: #007700">=</span><span style="color: #DD0000">"userInfo"</span><span style="color: #007700">&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;</span><span style="color: #0000BB">form&nbsp;action</span><span style="color: #007700">=</span><span style="color: #DD0000">"login"&nbsp;</span><span style="color: #0000BB">method</span><span style="color: #007700">=</span><span style="color: #DD0000">"post"</span><span style="color: #007700">&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;</span><span style="color: #0000BB">input&nbsp;type</span><span style="color: #007700">=</span><span style="color: #DD0000">"text"&nbsp;</span><span style="color: #007700">class=</span><span style="color: #DD0000">"em"&nbsp;</span><span style="color: #0000BB">placeholder</span><span style="color: #007700">=</span><span style="color: #DD0000">"Deine&nbsp;E-Mail"&nbsp;</span><span style="color: #0000BB">name</span><span style="color: #007700">=</span><span style="color: #DD0000">"email"</span><span style="color: #007700">/&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;</span><span style="color: #0000BB">input&nbsp;type</span><span style="color: #007700">=</span><span style="color: #DD0000">"password"&nbsp;</span><span style="color: #007700">class=</span><span style="color: #DD0000">"pw"&nbsp;</span><span style="color: #0000BB">placeholder</span><span style="color: #007700">=</span><span style="color: #DD0000">"Dein&nbsp;Passwort"&nbsp;</span><span style="color: #0000BB">name</span><span style="color: #007700">=</span><span style="color: #DD0000">"passwd"</span><span style="color: #007700">/&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;</span><span style="color: #0000BB">a&nbsp;href</span><span style="color: #007700">=</span><span style="color: #DD0000">""</span><span style="color: #007700">&gt;&lt;</span><span style="color: #0000BB">img&nbsp;style</span><span style="color: #007700">=</span><span style="color: #DD0000">"margin-top:&nbsp;3px;"&nbsp;</span><span style="color: #0000BB">src</span><span style="color: #007700">=</span><span style="color: #DD0000">"img/login.png"&nbsp;</span><span style="color: #0000BB">alt</span><span style="color: #007700">=</span><span style="color: #DD0000">"Login"&nbsp;</span><span style="color: #007700">/&gt;&lt;/</span><span style="color: #0000BB">a</span><span style="color: #007700">&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/</span><span style="color: #0000BB">form</span><span style="color: #007700">&gt;<br />&lt;/</span><span style="color: #0000BB">div</span><span style="color: #007700">&gt;&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code></code><hr />
</div>CSS:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">PHP-Code:</div>
	<hr /><code class="bbcode_code"><code><span style="color: #000000">
<span style="color: #0000BB"></span><span style="color: #FF8000">#userInfo&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">width</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">312px</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">float</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">right</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">margin</span><span style="color: #007700">-</span><span style="color: #0000BB">top</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">5px</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">position</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">relative</span><span style="color: #007700">;<br />}<br /><br /></span><span style="color: #FF8000">#userInfo&nbsp;span&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">text</span><span style="color: #007700">-</span><span style="color: #0000BB">transform</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">uppercase</span><span style="color: #007700">;<br />}<br /><br /></span><span style="color: #FF8000">#userInfo&nbsp;div&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">position</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">relative</span><span style="color: #007700">;<br />}<br /><br /></span><span style="color: #0000BB">input</span><span style="color: #007700">&#91;class=</span><span style="color: #DD0000">"em"</span><span style="color: #007700">&#93;,&nbsp;</span><span style="color: #0000BB">input</span><span style="color: #007700">&#91;class=</span><span style="color: #DD0000">"pw"</span><span style="color: #007700">&#93;,&nbsp;</span><span style="color: #0000BB">body&nbsp;</span><span style="color: #007700">&gt;&nbsp;</span><span style="color: #0000BB">header&nbsp;button&nbsp;</span><span style="color: #007700">{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">box</span><span style="color: #007700">-</span><span style="color: #0000BB">shadow</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">inset&nbsp;0px&nbsp;0px&nbsp;10px&nbsp;</span><span style="color: #007700">-</span><span style="color: #0000BB">7px&nbsp;</span><span style="color: #FF8000">#333;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">border</span><span style="color: #007700">-</span><span style="color: #0000BB">radius</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">3px</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">height</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">22px</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">vertical</span><span style="color: #007700">-</span><span style="color: #0000BB">align</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">top</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">margin</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">5px&nbsp;5px&nbsp;0&nbsp;0</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">font</span><span style="color: #007700">-</span><span style="color: #0000BB">family</span><span style="color: #007700">:&nbsp;</span><span style="color: #DD0000">"Open&nbsp;Sans&nbsp;Light"</span><span style="color: #007700">;<br />}<br /><br />.</span><span style="color: #0000BB">button&nbsp;</span><span style="color: #007700">{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">margin</span><span style="color: #007700">-</span><span style="color: #0000BB">top</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">3px</span><span style="color: #007700">;&nbsp;&nbsp;&nbsp;&nbsp;<br />}<br /><br /></span><span style="color: #0000BB">input</span><span style="color: #007700">&#91;class=</span><span style="color: #DD0000">"em"</span><span style="color: #007700">&#93;,&nbsp;</span><span style="color: #0000BB">input</span><span style="color: #007700">&#91;class=</span><span style="color: #DD0000">"pw"</span><span style="color: #007700">&#93;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">color</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">#7f7f7f;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">border</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">1px&nbsp;solid&nbsp;</span><span style="color: #FF8000">#b8b8b8;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">font</span><span style="color: #007700">-</span><span style="color: #0000BB">size</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">12px</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">width</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">100px</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">padding</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">0&nbsp;5px</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">font</span><span style="color: #007700">-</span><span style="color: #0000BB">family</span><span style="color: #007700">:&nbsp;</span><span style="color: #DD0000">"Open&nbsp;Sans&nbsp;Light"</span><span style="color: #007700">;<br />}<br /><br /></span><span style="color: #FF8000">#userInfo&nbsp;a.login,&nbsp;#userInfo&nbsp;a.forgotPwd&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">color</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">#d4250a;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">font</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">11px&nbsp;Arial</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">position</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">absolute</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">left</span><span style="color: #007700">:&nbsp;</span><span style="color: #0000BB">122px</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">top</span><span style="color: #007700">:&nbsp;-</span><span style="color: #0000BB">12px</span><span style="color: #007700">;<br />}&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code></code><hr />
</div>Screen:<br />
<br />
<img src="http://i.imgur.com/HVJjn.png" border="0" alt="" /><br />
<br />
Jetzt meine Frage - warum? Und wie kann ich es beheben?<br />
<br />
<br />
Liebe Grüße</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>BL4cK</dc:creator>
			<guid isPermaLink="true">html-99/twitter-bootstrap-schwarzer-balken-an-der-navigation-19782</guid>
		</item>
		<item>
			<title>CMS Designanpassung, Joomla</title>
			<link>html-99/cms-designanpassung-joomla-19520?goto=newpost</link>
			<pubDate>Tue, 08 Jan 2013 12:09:36 GMT</pubDate>
			<description>Hallo, 
 
ich bin auf der Suche nach jemandem, der mir ein Design in Joomla 2.5 anpassen kann, oder mir einfach nen schlichtes BF3 Design zukommen...</description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
ich bin auf der Suche nach jemandem, der mir ein Design in Joomla 2.5 anpassen kann, oder mir einfach nen schlichtes BF3 Design zukommen lassen kann (mit Link, FREE) da ich nen Battlefield 3 Clan eröffnen möchte mit paar Freunden auf ne sehr private Basis. <br />
<br />
Hat jemand Ahnung oder Lust sich nen paar € zu verdienen? Der meldet sich! Liebe Grüße</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Rabbit</dc:creator>
			<guid isPermaLink="true">html-99/cms-designanpassung-joomla-19520</guid>
		</item>
		<item>
			<title>Mobile Webseiten - Der Einstieg</title>
			<link>html-99/mobile-webseiten-der-einstieg-18242?goto=newpost</link>
			<pubDate>Thu, 22 Nov 2012 13:00:20 GMT</pubDate>
			<description>Hallo liebe Community, 
 
_mobile Webseiten_ werden immer bekannter, die Zahl der mobilen Nutzer im Web steigt stetig. 
Aus diesem Grund habe ich...</description>
			<content:encoded><![CDATA[<div>Hallo liebe Community,<br />
<br />
<u>mobile Webseiten</u> werden immer bekannter, die Zahl der mobilen Nutzer im Web steigt stetig.<br />
Aus diesem Grund habe ich mich damit beschäftigt, wie man diese entwickelt.<br />
<br />
In diesem Tutorial wird es allerdings nur um die <u>Grundlagen </u>gehen, ich werde weder auf APIs noch auf andere Hilfsmittel eingehen, das wird in einem weiteren Tutorial folgen.<br />
<br />
<u>HTML5</u>- und <u>CSS3</u>-<u>Kenntnisse </u>sollten vorhanden sein.<br />
<br />
Zuerst einmal der Quelltext der Datei <u>index.html</u><br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;!DOCTYPE html&gt;<br />
&lt;html lang=&quot;de&quot;&gt;<br />
&nbsp; &nbsp; &lt;head&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;title&gt;#1 Mobile&lt;/title&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;meta charset=&quot;UTF-8&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;link rel=&quot;apple-touch-icon&quot; sizes=&quot;114x114&quot; href=&quot;img/apple.jpg&quot; /&gt;<br />
&nbsp; &nbsp; &lt;/head&gt;<br />
&nbsp; &nbsp; &lt;body&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- Kopfbereich --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;header&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;h1&gt;#1 Mobile&lt;/h1&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;nav&gt;&lt;/nav&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/header&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- Content --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;section&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;#1 Mobile ist mein erster Versuch eine mobile Webseite zu entwicklen. Dabei benutze ich ausschlie&amp;szlig;lich HTML5 und CSS3.&lt;br&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Au&amp;szlig;erdem habe ich ein apple-touch-icon eingebunden, sodass man diese Webseite auf dem Homescreen des iPhones abgelegen kann.&lt;br&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/p&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/section&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- Fußbereich --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;footer&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &amp;copy; &lt;a href=&quot;index.html&quot;&gt;#1 Mobile&lt;/a&gt; 2012<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/footer&gt;<br />
&nbsp; &nbsp; &lt;/body&gt;<br />
&lt;/html&gt;</code><hr />
</div>Jetzt werde ich einige Sachen zu diesem Quellcode erklären:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width&quot; /&gt;</code><hr />
</div>Damit verhindert man das Verkleinern der Webseite durch den Browser, was bei mobilen Webseiten wichtig ist. Anstatt content=&quot;width=device-width&quot; kann man auch content=&quot;width=320&quot; verwenden.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;link rel=&quot;apple-touch-icon&quot; sizes=&quot;114x114&quot; href=&quot;img/apple.jpg&quot; /&gt;</code><hr />
</div>Die Verlinkung zu dem apple-touch-icon, das dafür verwendet wird bei einem iPhone die Webseite auf dem Homescreen abzulegen.<br />
<br />
Der Rest sollte bekannt sein.<br />
<br />
Kommen wir zur <u>CSS-Datei style.css:</u><br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">html,body{<br />
&nbsp; &nbsp; margin:0;<br />
&nbsp; &nbsp; padding:0;<br />
}<br />
body{<br />
&nbsp; &nbsp; font-family:Helvetica,Arial;<br />
&nbsp; &nbsp; background:#E8E8E8;<br />
}<br />
header,footer{<br />
&nbsp; &nbsp; width:100%;<br />
&nbsp; &nbsp; background:black;<br />
&nbsp; &nbsp; color:white;<br />
&nbsp; &nbsp; padding:2px 0px 2px 10px;<br />
&nbsp; &nbsp; opacity: 0.7;<br />
}<br />
section{<br />
&nbsp; &nbsp; padding:2px 10px 2px 10px;<br />
&nbsp; &nbsp; text-align:justify;<br />
&nbsp; &nbsp; font-size:14px;<br />
}<br />
footer{<br />
&nbsp; &nbsp; font-size:12px;<br />
&nbsp; &nbsp; text-align:center;<br />
}<br />
h1{<br />
&nbsp; &nbsp; padding:0;<br />
&nbsp; &nbsp; margin:0;<br />
}<br />
a{<br />
&nbsp; &nbsp; color:white;<br />
}</code><hr />
</div><br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">margin:0;<br />
padding:0;</code><hr />
</div>Diese Angabe ist <u>wichtig</u>, damit kein weißer Rand entsteht.<br />
<br />
Der Rest sollte auch bekannt sein. Diese Datei sollte man allerdings noch <u>verkleinern</u>, um zu erreichen, dass bei einem Aufruf der Seite weniger Quellcode geladen werden muss, d.h. <u>höhere Geschwindigkeit,</u><br />
<br />
<u>Verkleinert</u>:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">html,body{margin:0;padding:0;}body{font-family:Helvetica,Arial;background:#E8E8E8;}header,footer{width:100%;background:black;color:white;padding:2px 0px 2px 10px;opacity: 0.7;}section{padding:2px 10px 2px 10px;text-align:justify;font-size:14px;}footer{font-size:12px;text-align:center;}h1{padding:0;margin:0;}a{color:white;}</code><hr />
</div>Vorschau:<br />
<br />
<a href="https://u-labs.de/forum/attachment.php?attachmentid=8221&amp;d=1414422013" id="attachment8221" rel="Lightbox_0" ><img src="https://u-labs.de/forum/attachment.php?attachmentid=8221&amp;d=1414422013&amp;thumb=1" border="0" alt="Klicke auf die Grafik für eine größere Ansicht&nbsp;

Name:	foto22.11.12135919e7d5q.png&nbsp;
Hits:	563&nbsp;
Größe:	85,5 KB&nbsp;
ID:	8221" class="thumbnail" style="float:CONFIG" /></a><br />
<br />
<a href="https://u-labs.de/forum/attachment.php?attachmentid=8222&amp;d=1414422038" id="attachment8222" rel="Lightbox_0" ><img src="https://u-labs.de/forum/attachment.php?attachmentid=8222&amp;d=1414422038&amp;thumb=1" border="0" alt="Klicke auf die Grafik für eine größere Ansicht&nbsp;

Name:	foto22.11.121359232ffja.png&nbsp;
Hits:	556&nbsp;
Größe:	63,4 KB&nbsp;
ID:	8222" class="thumbnail" style="float:CONFIG" /></a><br />
<br />
Solltet ihr noch Fragen haben, könnt ihr euch gerne hier im Thread oder per PN bei mir melden :)</div>


	<div style="padding:10px">

	
		<fieldset class="fieldset">
			<legend>Miniaturansichten angehängter Grafiken</legend>
			<div style="padding:10px">
			
<a href="https://u-labs.de/forum/attachment.php?attachmentid=8221&amp;d=1414422013" 
rel="Lightbox_160358" id="attachment8221"
><img class="thumbnail" src="https://u-labs.de/forum/attachment.php?attachmentid=8221&amp;stc=1&amp;thumb=1&amp;d=1414422013" 
alt="Klicke auf die Grafik für eine größere Ansicht&nbsp;

Name:	foto22.11.12135919e7d5q.png&nbsp;
Hits:	-&nbsp;
Größe:	85,5 KB&nbsp;
ID:	8221"/></a>
&nbsp;

<a href="https://u-labs.de/forum/attachment.php?attachmentid=8222&amp;d=1414422038" 
rel="Lightbox_160358" id="attachment8222"
><img class="thumbnail" src="https://u-labs.de/forum/attachment.php?attachmentid=8222&amp;stc=1&amp;thumb=1&amp;d=1414422038" 
alt="Klicke auf die Grafik für eine größere Ansicht&nbsp;

Name:	foto22.11.121359232ffja.png&nbsp;
Hits:	-&nbsp;
Größe:	63,4 KB&nbsp;
ID:	8222"/></a>
&nbsp;

			</div>
		</fieldset>
	

	

	

	

	</div>
]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Entrafiz</dc:creator>
			<guid isPermaLink="true">html-99/mobile-webseiten-der-einstieg-18242</guid>
		</item>
		<item>
			<title>Listenstyle verändern</title>
			<link>html-99/listenstyle-veraendern-18098?goto=newpost</link>
			<pubDate>Fri, 16 Nov 2012 19:13:03 GMT</pubDate>
			<description><![CDATA[heey Leute ! Ich hab da mal ein kleines Problem und zwar: Ich will, dass die Liste in meinem div, den ich mit der id "navi " versehen haben, eben...]]></description>
			<content:encoded><![CDATA[<div>heey Leute ! Ich hab da mal ein kleines Problem und zwar: Ich will, dass die Liste in meinem div, den ich mit der id &quot;navi &quot; versehen haben, eben nebeneinander erscheint.<br />
Nun habe ich das in CSS mit folgender Anweisung gemacht: <br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code">li{<br />
display: inline;<br />
padding-right:2px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; padding-left:10px;<br />
text-agin:center;<br />
}</code><hr />
</div>So nun ist aber das Problem, dass ich noch eine Liste brauche, die eben nicht nebeneinander erscheint, aber wenn ich nun die zweite Liste dann mache, dann erscheint die genauso nebeneinander. <br />
Wie mach ich das, dass eben die Liste nur im navi eben nebeneinander erscheint?</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Saad</dc:creator>
			<guid isPermaLink="true">html-99/listenstyle-veraendern-18098</guid>
		</item>
		<item>
			<title>Suche HTML Code</title>
			<link>html-99/suche-html-code-17949?goto=newpost</link>
			<pubDate>Sat, 10 Nov 2012 13:24:55 GMT</pubDate>
			<description>Hallo, 
 
suche mal eben einen komplett-Code für meine Index-Seite. Sollte nicht so schwer sein, aber suche auch gleichzeitig ein Ansporn wieder...</description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
suche mal eben einen komplett-Code für meine Index-Seite. Sollte nicht so schwer sein, aber suche auch gleichzeitig ein Ansporn wieder hinein zu kommen.<br />
<br />
Ich suche:<br />
<br />
Eine ganz normale Hintergrundfarbe (wenn möglich über CSS, gerne eingebunden, ohne .css datei) in #290044<br />
<br />
Ich will auf diese Page genau 1 Bild rauf machen, das soll vertikal als auch horizontal zentriert sein.<br />
<br />
Sprich, ich suche nur die Hintergrundfarbe,<br />
und den Code für nen zentriertes Bild<br />
<br />
entsprechende &lt;html&gt;&lt;title&gt; etc. dazu bitte. MfG</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Rabbit</dc:creator>
			<guid isPermaLink="true">html-99/suche-html-code-17949</guid>
		</item>
		<item>
			<title>Hyperlink einer HTML Datei?</title>
			<link>html-99/hyperlink-einer-html-datei-17896?goto=newpost</link>
			<pubDate>Thu, 08 Nov 2012 15:24:57 GMT</pubDate>
			<description>Hey. 
 
Ich habe auf meinem Webserver eine Indexdatei die 3 Wörter enthält. Wenn 1 Wort davon angeklickt wird soll sich eine 
HTML Datei öffnen die...</description>
			<content:encoded><![CDATA[<div>Hey.<br />
<br />
Ich habe auf meinem Webserver eine Indexdatei die 3 Wörter enthält. Wenn 1 Wort davon angeklickt wird soll sich eine<br />
HTML Datei öffnen die sich ebenfalls auf dem WebServer befindet öffnet, wie macht man das?</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>x BoooM x</dc:creator>
			<guid isPermaLink="true">html-99/hyperlink-einer-html-datei-17896</guid>
		</item>
		<item>
			<title>Template / Datenbank oder ähnliches?</title>
			<link>html-99/template-datenbank-aehnliches-17891?goto=newpost</link>
			<pubDate>Thu, 08 Nov 2012 13:25:42 GMT</pubDate>
			<description>Hey. 
 
Ich möchte auf einem Webserver eine Seite auflegen wo ich dann auf der Homepage 8 Kategorien zur Auswahl habe zum anklicken. Wenn 1 Kategorie...</description>
			<content:encoded><![CDATA[<div>Hey.<br />
<br />
Ich möchte auf einem Webserver eine Seite auflegen wo ich dann auf der Homepage 8 Kategorien zur Auswahl habe zum anklicken. Wenn 1 Kategorie angeklickt wird, erscheinen verschiedene Wörter als Beispiel:<br />
<br />
Wort 1 | Wort 2 | Wort 3<br />
Wort 4 | Wort 5 | Wort 6<br />
<br />
So jetzt mal als Beispielmuster.<br />
<br />
Wenn man Wort 1 anklickt, sollen dann die anderen Wörter entfernt werden damit eine neue<br />
Seite zu sehen ist und dort sollen dann untereinander mehrere Namen stehen.<br />
<br />
Geht sowas irgendwie? Also brauche dafür eine Vorlage, soll halt wie so eine Sammlung sein<br />
Startseite sind die 8 Kategorien, bei jeder angeklickten Kategorie ist eine Wortsammlung <br />
und wenn 1 Wort angeklickt wird aus der Sammlung öffnet sich eine Namensliste.</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>x BoooM x</dc:creator>
			<guid isPermaLink="true">html-99/template-datenbank-aehnliches-17891</guid>
		</item>
		<item>
			<title>Überschrift mit Background</title>
			<link>html-99/ueberschrift-mit-background-16368?goto=newpost</link>
			<pubDate>Mon, 17 Sep 2012 23:37:34 GMT</pubDate>
			<description>Hi, 
 
wie kriege ich auf meiner Homepage eine solche Überschrift mit einem blauen Hintergrund und weißem Text hin? 
 
Bild:...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
wie kriege ich auf meiner Homepage eine solche Überschrift mit einem blauen Hintergrund und weißem Text hin?<br />
<br />
<a style="font-weight:bold;text-decoration:none;" target="blank" href="http://i48.tinypic.com/f2korl.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a><br />
<br />
Habe im Quelltext nichts gefunden, was mich irgendwie weiterbringt. :-|<br />
<br />
MfG</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Daxter</dc:creator>
			<guid isPermaLink="true">html-99/ueberschrift-mit-background-16368</guid>
		</item>
		<item>
			<title>HTML5 + CSS3 - Blog Layout</title>
			<link>html-99/html5-css3-blog-layout-15673?goto=newpost</link>
			<pubDate>Fri, 17 Aug 2012 10:35:19 GMT</pubDate>
			<description><![CDATA[Hallo Jungs, 
ich arbeite im Moment auf der Arbeit an einem Layout für einen Blog und benutze HTML5 und CSS3, damit ich nicht mit <div> arbeiten...]]></description>
			<content:encoded><![CDATA[<div>Hallo Jungs,<br />
ich arbeite im Moment auf der Arbeit an einem Layout für einen Blog und benutze HTML5 und CSS3, damit ich nicht mit &lt;div&gt; arbeiten muss, sondern &lt;header&gt;, &lt;nav&gt; etc benutzen kann.<br />
Eventuell kann es jemand von euch gebrauchen.<br />
<br />
Sieht so aus:<br />
<img src="https://u-img.net/img/2306Ht.png" border="0" alt="" /><br />
<br />
Farben etc fehlen noch.<br />
<br />
HTML-Code: <br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;!DOCTYPE html&gt;</span><br />
<span style="color:#000080">&lt;html&gt;</span><br />
&nbsp; <span style="color:#000080">&lt;head&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;meta http-equiv=&quot;content-type&quot; content=<span style="color:#0000FF">&quot;text/html; charset=utf-8&quot;</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;title&gt;</span>Blog<span style="color:#000080">&lt;/title&gt;</span><br />
&nbsp; <span style="color:#000080">&lt;/head&gt;</span><br />
&nbsp; <span style="color:#000080">&lt;body&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;header id=<span style="color:#0000FF">&quot;page_header&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;h1&gt;</span>HTML5 Blog!<span style="color:#000080">&lt;/h1&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;nav&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;ul&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>Letzte Beitr<b><i>&amp;auml;</i></b>ge<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>Archiv<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>Kontakt<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/ul&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/nav&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;/header&gt;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color:#000080">&lt;section id=<span style="color:#0000FF">&quot;sidebar&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;nav&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;h3&gt;</span>Archiv<span style="color:#000080">&lt;/h3&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;ul&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>August 2012<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>Juli 2012<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>Juni 2012<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>Mai 2012<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>April 2012<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>M<b><i>&amp;auml;</i></b>rz 2012<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>Februar 2012<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>Januar 2012<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/ul&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/nav&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;/section&gt;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color:#000080">&lt;section id=<span style="color:#0000FF">&quot;posts&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;article class=<span style="color:#0000FF">&quot;post&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;header&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;h2&gt;</span>Erster Beitrag: Lorem ipsum dolor sit amet...<span style="color:#000080">&lt;/h2&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;p&gt;</span>Geschrieben von Nico am 17.08.2012 um 12:17 Uhr.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/p&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/header&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;aside&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;p&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <b><i>&amp;quot;</i></b>Zitat von Lorem &#91;...&#93; sed diam nonumy eirmod. <b><i>&amp;quot;</i></b><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/p&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/aside&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;p&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/p&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;p&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.&nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/p&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;p&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/p&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;footer&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;p&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span><span style="color:#000080">&lt;i&gt;</span>25 Kommentare<span style="color:#000080">&lt;/i&gt;</span><span style="color:#008000">&lt;/a&gt;</span>...<span style="color:#000080">&lt;/p&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/footer&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/article&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;/section&gt;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color:#000080">&lt;footer id=<span style="color:#0000FF">&quot;page_footer&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;p&gt;</span><b><i>&amp;copy;</i></b> 2012 Nico.<span style="color:#000080">&lt;/p&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;nav&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;ul&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>Startseite<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span><b><i>&amp;Uuml;</i></b>ber uns<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>Nutzungsbedingungen<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;li&gt;</span><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;&quot;</span>&gt;</span>Impressum<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/li&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;ul&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/nav&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;/footer&gt;</span><br />
&nbsp; <span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>CSS-Code:<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code">body {font-family:Verdana;width:960px; margin:15px auto;}<br />
&nbsp; &nbsp; &nbsp; p {margin:0 0 20px 0;}&nbsp;  <br />
&nbsp; &nbsp; &nbsp; p, li {line-height:20px;} <br />
&nbsp; &nbsp; &nbsp; header#page_header {width:100%;}&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; header#page_header nav ul, #page_footer nav ul {list-style:none; margin:0;padding:0;}<br />
&nbsp; &nbsp; &nbsp; #page_header nav ul li, footer#page_footer nav ul li {padding:0; margin:0 20px 0 0; display:inline;}&nbsp;  <br />
&nbsp; &nbsp; &nbsp; section#posts {float:left; width:74%;}&nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; section#posts aside {float: right;width: 35%;margin-left:5%; font-size:20px;line-height:40px;}<br />
&nbsp; &nbsp; &nbsp; section#sidebar {float:left;width:25%;}<br />
&nbsp; &nbsp; &nbsp; footer#page_footer&nbsp; {clear:both;width:100%;display:block;text-align:center;}</code><hr />
</div>JS-Code (extra für IE alter als Version 9.0)(kommt in den &lt;head&gt;:<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><i><span style="color:#000080">&lt;!--&#91;if lt IE 9&#93;&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color:#800000">&lt;script type=<span style="color:#0000FF">&quot;text/javascript&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; document.createElement(&quot;nav&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; document.createElement(&quot;header&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; document.createElement(&quot;footer&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; document.createElement(&quot;section&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; document.createElement(&quot;aside&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; document.createElement(&quot;article&quot;);<br />
&nbsp; &nbsp; &nbsp; <span style="color:#800000">&lt;/script&gt;</span><br />
&nbsp; &nbsp; <span style="color:#000080">&lt;!&#91;endif&#93;--&gt;</span></i></code><hr />
</div></div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Snees</dc:creator>
			<guid isPermaLink="true">html-99/html5-css3-blog-layout-15673</guid>
		</item>
		<item>
			<title>Internetseite mit SEO</title>
			<link>html-99/internetseite-mit-seo-15609?goto=newpost</link>
			<pubDate>Tue, 14 Aug 2012 16:20:27 GMT</pubDate>
			<description>Hallo, ich möchte ein wenig meine Kenntnisse im Bereich SEO testen, 
dazu möchte ich eine Internetseite programmieren, 
leider fehlt mir - wie fast...</description>
			<content:encoded><![CDATA[<div>Hallo, ich möchte ein wenig meine Kenntnisse im Bereich SEO testen,<br />
dazu möchte ich eine Internetseite programmieren,<br />
leider fehlt mir - wie fast immer - eine gute Idee worum es auf dieser Internetseite geht, also der Inhalt.<br />
Es sollte ein Thema sein, dass es noch nicht soooo oft gibt und was mich auch zumindest ein bisschen interessiert, also keine Pflegeprodukte für die Rentner 70+ ;)<br />
<br />
LG</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Snees</dc:creator>
			<guid isPermaLink="true">html-99/internetseite-mit-seo-15609</guid>
		</item>
		<item>
			<title><![CDATA[[HTML Tutorial] #6 - Formulare]]></title>
			<link>html-99/html-tutorial-6-formulare-15546?goto=newpost</link>
			<pubDate>Sun, 12 Aug 2012 09:59:20 GMT</pubDate>
			<description>Bild: http://img4host.net/upload/162120465004698ed2e2b.png  
 
_#6 - Formulare 
_ 
 
Formulare werden in der heutigen Zeit vor allem zur...</description>
			<content:encoded><![CDATA[<div><div style="text-align: center;"><a style="font-weight:bold;text-decoration:none;" target="blank" href="http://img4host.net/upload/162120465004698ed2e2b.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a></div><br />
<u><div style="text-align: center;"><font size="5">#6 - Formulare</font></div></u><br />
<br />
Formulare werden in der heutigen Zeit vor allem zur Datenverarbeitung in HTML genutzt. Egal ob man damit nun jemanden eine E-Mail schreibt, eine Bestellung aufgibt, oder per Datenbankabfrage ein bestimmtes Produkt bearbeitet. Für alles werden Formulare benötigt. Das Formular an sich ist im Grunde erst einmal recht einfach aufgebaut, wird jedoch durch eine Menge von verschiedenen Attributen ausgeschmückt. Der normale Formular-Tag:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#FF8000">&lt;form&gt;</span><br />
<span style="color:#FF8000">&lt;/form&gt;</span></code><hr />
</div>Das ist das Grundgerüst jedes HTML Formulars. Innerhalb des Formulars finden sich nun sogenannte input oder select Felder. Ebenfalls gibt es die Möglichkeit, Textboxen einzufügen. Später mehr. Input boxen sind nichts anderes als einfache Texteingaben und select Felder sind die Dropdownlisten die man des öfteren zu gesicht bekommt. Diese Elemente werden innerhalb des Form-Tags platziert (weil sie ja zum Formular an sich gehören). Ein Beispiel wäre also:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#FF8000">&lt;form&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input&gt;</span><br />
<span style="color:#FF8000">&lt;/form&gt;</span></code><hr />
</div>Nun hätten wir quasi 2 Input-Felder. Dies ist momentan aber noch kein valides HTML. Fangen wir mit dem Formular-Tag an sich an. Diesem Tag müssen wir 2 Attribute standartmäßig zuweisen. Einmal action=&quot;&quot; und auf der anderen Seite method=&quot;&quot;. Action ist dafür da, um in HTML anzugeben, auf welcher Seite die übergebenen Daten verarbeitet werden sollen, wenn wir das Formular abschicken. Wenn wir also nun schreiben würden:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#FF8000">&lt;form action=<span style="color:#0000FF">&quot;test.php&quot;</span>&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input&gt;</span><br />
<span style="color:#FF8000">&lt;/form&gt;</span></code><hr />
</div>Würde der Browser nach dem abschicken des Formulars die Datei test.php aufrufen und dort die Daten hin übertragen. Als zweites Attribut haben wir die so genannte Methode. Dort gibt es zwei Werte die man eintragen kann: post und get. Was die Werte nun genau bedeuten ist für uns eigentlich recht uninteressant da es dementsprechend die Programmierer nachher nutzen können wie sie wollen, standardmäßig sollten wir jedoch post nehmen (es ist das momentan noch meist benutzte bei Formularen). Unser &lt;form&gt; Tag müsste nun also erweitert in etwa so aussehen:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#FF8000">&lt;form action=<span style="color:#0000FF">&quot;test.php&quot;</span> method=<span style="color:#0000FF">&quot;post&quot;</span>&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input&gt;</span><br />
<span style="color:#FF8000">&lt;/form&gt;</span></code><hr />
</div>Damit ist der &lt;form&gt; Tag nun soweit vorbereitet das man ihn als valide darstellen kann. Als nächstes widmen wir uns den input Feldern. &lt;input&gt; Felder sind wie schon angesprochen dazu da um dem User die Möglichkeit zu bieten eine Eingabemöglichkeit zu tätigen. Dazu müssen wir dem &lt;input&gt; Feld aber noch einen Typ zuweisen. Seit HTML5 gibt es eine Menge erweiterter Typen, die kann man sich auf der offiziellen W3C Seite ansehen. Ich werde nun die 3 Haupt-Typen: text,password und submit ansprechen. Ein Beispiel-Tag könnte nun so aussehen:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#FF8000">&lt;form action=<span style="color:#0000FF">&quot;test.php&quot;</span> method=<span style="color:#0000FF">&quot;post&quot;</span>&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input type=<span style="color:#0000FF">&quot;text&quot;</span>&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input type=<span style="color:#0000FF">&quot;submit&quot;</span>&gt;</span><br />
<span style="color:#FF8000">&lt;/form&gt;</span></code><hr />
</div>In dem wir dem &lt;input&gt; Feld den type Text zuweisen sagen wir dem Browser, dass er ein normales Textfeld ausgeben soll. Würden wir den Type nun durch password austauschen, würde der eingebene Text in Sternchen dargestellt werden. (Beachte: Generell wird alles in HTML in Englisch geschrieben, also mit Password mit d am ende!). Submit sagt dem ganzen das wir nun bitte einen Absenden Button verpassen sollen. Unser Beispiel von oben würde nun so aussehen:<br />
<br />
<img src="https://u-img.net/img/7249Ub.png" border="0" alt="" /><br />
<br />
Nun haben wir ja schonmal unser Grundlegendes Formular. Nun wollen wir dem Benutzer aber auch sagen können, was er dort eingeben kann. Bei &lt;input&gt; Feldern können wir seit HTML5 dort auf das Attribut placeholder zugreifen. Damit wird ein ausgegrauter Text angezeigt wenn nichts in der Box steht. Wenn etwas drinnen steht, verschwindet dieser. Bei dem submit Button müssen wir auf das Attribut value zurückgreifen. Ein Beispiel wäre:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#FF8000">&lt;form action=<span style="color:#0000FF">&quot;test.php&quot;</span> method=<span style="color:#0000FF">&quot;post&quot;</span>&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input type=<span style="color:#0000FF">&quot;text&quot;</span> placeholder=<span style="color:#0000FF">&quot;Benutzername..&quot;</span>&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input type=<span style="color:#0000FF">&quot;submit&quot;</span> value=<span style="color:#0000FF">&quot;Benutzername absenden!&quot;</span>&gt;</span><br />
<span style="color:#FF8000">&lt;/form&gt;</span></code><hr />
</div>dies würde dann so aussehen:<br />
<br />
<img src="https://u-img.net/img/7249Ub.png" border="0" alt="" /><br />
<br />
und das wars auch schon! Im Grunde haben wir nun ein Formular welches Valide ist und man in einem Design angeben kann. Es gibt noch eine Menge anderer Attribute und types die man benutzen kann. Die meisten werden jedoch erst interessant, wenn man das ganze mit der Programmierung an sich verbindet, von daher lassen wir das nun erstmal aus und werden später noch einmal darauf zurückkommen!<br />
<br />
Es fehlen jedoch noch 2 wichtige Elemente in einem Formular: Zum einen unsere Dropdown-Box (auch select-box genannt) sowie unsere Textbox.<br />
<br />
Eine &lt;select&gt;-Box bindet man auch dementsprechend mit dem dazugehörigen HTML Tag ein. Dazu kommt, dass man jeden Eintrag innerhalb dieser Dropdownlist mit dem &lt;option&gt;&lt;/option&gt; Tag versehen muss.  Option steht hier für ein einzelnes Element, welches in der &lt;select&gt;-Box angezeigt werden soll. Ein Beispiel:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#FF8000">&lt;form action=<span style="color:#0000FF">&quot;test.php&quot;</span> method=<span style="color:#0000FF">&quot;post&quot;</span>&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input type=<span style="color:#0000FF">&quot;text&quot;</span> placeholder=<span style="color:#0000FF">&quot;Benutzername..&quot;</span>&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;select&gt;</span><br />
&nbsp; <span style="color:#FF8000">&lt;option&gt;</span>Berlin<span style="color:#FF8000">&lt;/option&gt;</span><br />
&nbsp; <span style="color:#FF8000">&lt;option&gt;</span>Hamburg<span style="color:#FF8000">&lt;/option&gt;</span><br />
&nbsp; <span style="color:#FF8000">&lt;option&gt;</span>Bremen<span style="color:#FF8000">&lt;/option&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;/select&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input type=<span style="color:#0000FF">&quot;submit&quot;</span> value=<span style="color:#0000FF">&quot;Benutzername absenden!&quot;</span>&gt;</span><br />
<span style="color:#FF8000">&lt;/form&gt;</span></code><hr />
</div>würde folgende Ausgabe erzeugen:<br />
<br />
<img src="https://u-img.net/img/4250De.png" border="0" alt="" /><br />
<br />
nun hat der Benutzer schon die Möglichkeit seine Stadt anzugeben, aus der er kommt! Hier gilt auch wieder, man kann eine Menge verschiedener Attribute setzen, dazu kommen wir aber später. (Das ganze wird sich dann auch eher in Richtung Programmierung ziehen und nicht mehr auf HTML an sich ansprechen).<br />
<br />
Als letztes wichtiges Standardelement gibt es noch die Textboxen. Diese sieht man beispielsweise oft bei Formularen mit großen Eingaben wie Kontaktseiten. Um eine Textbox einzubinden verwendet man den Tag &lt;textarea&gt;. Diesem weißt man dann später eine Breite und Höhe mit CSS zu.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#FF8000">&lt;form action=<span style="color:#0000FF">&quot;test.php&quot;</span> method=<span style="color:#0000FF">&quot;post&quot;</span>&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input type=<span style="color:#0000FF">&quot;text&quot;</span> placeholder=<span style="color:#0000FF">&quot;Benutzername..&quot;</span>&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;select&gt;</span><br />
&nbsp; <span style="color:#FF8000">&lt;option&gt;</span>Berlin<span style="color:#FF8000">&lt;/option&gt;</span><br />
&nbsp; <span style="color:#FF8000">&lt;option&gt;</span>Hamburg<span style="color:#FF8000">&lt;/option&gt;</span><br />
&nbsp; <span style="color:#FF8000">&lt;option&gt;</span>Bremen<span style="color:#FF8000">&lt;/option&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;/select&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;textarea&gt;</span><span style="color:#FF8000">&lt;/textarea&gt;</span><br />
&nbsp;<span style="color:#FF8000">&lt;input type=<span style="color:#0000FF">&quot;submit&quot;</span> value=<span style="color:#0000FF">&quot;Benutzername absenden!&quot;</span>&gt;</span><br />
<span style="color:#FF8000">&lt;/form&gt;</span></code><hr />
</div>Mittlerweile lassen sich die Boxen aber auch mithilfe gängiger Browser automatisch vergrößern und verkleinern.<br />
<br />
Dies waren die Elemente die man eigentlich in jedem Formular meisten vorfindet. Erweiterungen gibt es noch mithilfe von Checkboxen, Radio-Buttons, Datumsauswahlen und vieles mehr. Dazu aber später mehr!</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Comu</dc:creator>
			<guid isPermaLink="true">html-99/html-tutorial-6-formulare-15546</guid>
		</item>
		<item>
			<title><![CDATA[[HTML Tutorial] #5 - Tabellen]]></title>
			<link>html-99/html-tutorial-5-tabellen-15077?goto=newpost</link>
			<pubDate>Thu, 26 Jul 2012 15:39:16 GMT</pubDate>
			<description>Bild: http://img4host.net/upload/162120465004698ed2e2b.png  
 
_#5 - Tabellen 
_ 
 
Wir haben ja nun bereits schon in den letzten Teilen des...</description>
			<content:encoded><![CDATA[<div><div style="text-align: center;"><a style="font-weight:bold;text-decoration:none;" target="blank" href="http://img4host.net/upload/162120465004698ed2e2b.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a></div><br />
<u><div style="text-align: center;"><font size="5">#5 - Tabellen</font></div></u><br />
<br />
Wir haben ja nun bereits schon in den letzten Teilen des Tutorials eine Menge Tags dazu gelernt. Der mit Abstand (neben den Formularen sowie div Boxen) schwierigste Tag ist der, der eine Tabelle enthält.<br />
<br />
Denn wir haben anfangs ein Problem: Wir können das ganze nicht wie in Excel optisch betrachten sondern müssen und das ganze von Anfang an logisch aufbauen. Den einen Leuten fällt es einfacher, den anderen schwerer.<br />
<br />
Aber bevor wir zu Reihen in einer Tabelle kommen oder einzelnen Zellen, legen wir erst einmal unser HTML-Dokument sowie den Tabellen Tag an. Auch hier kann man wieder aus dem Englischen übersetzen. &quot;Timetable&quot; =&gt; &quot;Stundenplan/Stundentabelle&quot;.<br />
<br />
In unserem Fall lautet der Tag für eine Tabelle also tatsächlich einfach &lt;table&gt;.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;html&gt;</span><br />
<span style="color:#000080">&lt;head&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;title&gt;</span> Eine einfache Tabelle <span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><br />
<span style="color:#000080">&lt;body&gt;</span><br />
&nbsp; <span style="color:#000080">&lt;h1&gt;</span> Unsere erste Tabelle <span style="color:#000080">&lt;/h1&gt;</span><br />
&nbsp; <span style="color:#008080">&lt;table&gt;</span><br />
&nbsp; <span style="color:#008080">&lt;/table&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>Nun weiß HTML schon einmal, dass wir eine Tabelle erzeugen wollen. In unserem Fall ist die Tabelle aber leer, da wir keinen Inhalt eingefügt haben.<br />
<br />
Nun wollen wir anfangen in dem wir unsere erste Tabellenreihe anlegen. Eine Tabellenreihe besteht wie in Excel aus mehreren Zellen. Wie die Tabellenreihe in Excel aussieht:<br />
<br />
<a style="font-weight:bold;text-decoration:none;" target="blank" href="http://img4host.net/upload/2617192450115ffc7c7cc.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a><br />
<br />
Wie sie in HTML aussieht:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#008080">&lt;table&gt;</span><br />
<span style="color:#008080">&lt;tr&gt;</span><br />
<span style="color:#008080">&lt;/tr&gt;</span><br />
<span style="color:#008080">&lt;/table&gt;</span></code><hr />
</div>Genau! Du hast es schon richtig erkannt. Eine Tabellenreihe wird auch wieder mithilfe von Tags innerhalb der Tabelle an sich definiert. In unserem Fall, mithilfe des &lt;tr&gt; Tags (Table Row = Tabellenreihe) haben wir nun unsere erste  Reihe in der Tabelle erstellt.<br />
<br />
Wollen wir nun weitere Reihen dranhängen, ist das ganz einfach. Wir setzen einfach nach und nach immer wieder &lt;tr&gt;'s aneinander, damit wir einzelne Reihen erhalten.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<b><span style="font-family: Comic Sans MS">Aufgabe:</span></b><span style="font-family: Comic Sans MS"> Erstelle eine einfache Tabelle mit 3 Reihen. Es geht in dieser Aufgabe vor allem um die Logik, wie solche Tabellen aufgebaut sind.</span>
			
		<hr />
	</div>
</div><div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<i>Lösung</i> <input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#008080">&lt;table&gt;</span><br />
<br />
<span style="color:#008080">&lt;tr&gt;</span><br />
<span style="color:#008080">&lt;/tr&gt;</span><br />
<br />
<span style="color:#008080">&lt;tr&gt;</span><br />
<span style="color:#008080">&lt;/tr&gt;</span><br />
<br />
<span style="color:#008080">&lt;tr&gt;</span><br />
<span style="color:#008080">&lt;/tr&gt;</span><br />
<br />
<span style="color:#008080">&lt;/table&gt;</span></code><hr />
</div>
</div>
</div>
</div><br />
<br />
Ich habe das in dem Lösungscode bewusst außeinander gesetzt. Normalerweise fügt man die Tags einfach nach und nach zusammen. So ist es jedoch um einiges verständlicher, wie diese Reihen nun zustande kommen.<br />
<br />
Nun wollen wir unsere &quot;Felder&quot; in die Tabelle einfügen. Diese Felder kennt man ebenfalls aus Excel, sie sehen so aus:<br />
<br />
<a style="font-weight:bold;text-decoration:none;" target="blank" href="http://img4host.net/upload/2617245350116145b748b.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a><br />
<br />
In HTML sieht das ganze so aus:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#008080">&lt;table&gt;</span><br />
<span style="color:#008080">&lt;tr&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT <span style="color:#008080">&lt;/td&gt;</span><br />
<span style="color:#008080">&lt;/tr&gt;</span><br />
<span style="color:#008080">&lt;/table&gt;</span></code><hr />
</div>Was haben wir nun da oben in dem Code gemacht? Wir haben erst einmal unsere Tabelle an sich angelegt, danach eine neue Reihe erstellt und in dieser Reihe ein Feld angelegt. Dieses Feld definiert man mit &lt;td&gt; (Table Data = Datensatz). Im Grunde findet sich diese Verschachtelung nun immer wieder. Ebenfalls ist es hier Möglich, mehrere &quot;Zellen&quot; innerhalb einer Tabellenreihe zu haben. Dazu hängen wir die ganzen &lt;td&gt;'s auch wieder nur aneinander:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#008080">&lt;tr&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT <span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT2 <span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT3 <span style="color:#008080">&lt;/td&gt;</span><br />
<span style="color:#008080">&lt;/tr&gt;</span></code><hr />
</div>Dieses Beispiel oben, würde folgende Ausgabe erzeugen:<br />
<br />
<a style="font-weight:bold;text-decoration:none;" target="blank" href="http://img4host.net/upload/2617302750116293a5e95.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a><br />
<font size="1">(Anmerkung: Ich habe hier das Attribut border=&quot;1&quot; verwendet. (&lt;table border=&quot;1&quot;). Dieses ist veraltet und wird heutzutage durch CSS ersetzt. Es dient nur dazu um den Rand zu sehen, da er sonst nicht sichtbar wäre.)</font><br />
<br />
Um nun oben unsere Lösung zu erweitern, in der wir mehrere Tabellenreihen angelegt haben, wir nun wissen dass das ganze Logisch immer aufeinanderfolgt und ineinander verschachtelt ist, können wir uns nun ganz einfach 3 Tabellenreihen mit je 3 Zeilen zaubern:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#008080">&lt;table&gt;</span><br />
<span style="color:#008080">&lt;tr&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT <span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT2 <span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT3 <span style="color:#008080">&lt;/td&gt;</span><br />
<span style="color:#008080">&lt;/tr&gt;</span><br />
<span style="color:#008080">&lt;tr&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT4 <span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT5 <span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT6 <span style="color:#008080">&lt;/td&gt;</span><br />
<span style="color:#008080">&lt;/tr&gt;</span><br />
<span style="color:#008080">&lt;tr&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT7 <span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT8 <span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp;<span style="color:#008080">&lt;td&gt;</span> TEXT9 <span style="color:#008080">&lt;/td&gt;</span><br />
<span style="color:#008080">&lt;/tr&gt;</span><br />
<span style="color:#008080">&lt;/table&gt;</span></code><hr />
</div>Das ganze sieht dann am Ende so aus:<br />
<br />
<a style="font-weight:bold;text-decoration:none;" target="blank" href="http://img4host.net/upload/26173611501163ebb9916.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a><br />
<br />
Es gibt nun noch diverse Methoden und andere Tags die man dazu lernen kann. Diese kommen aber alle mit der Zeit wenn man sich mit so etwas mehr beschäftigt. Ebenfalls hat man die Möglichkeit eine Tabellenzelle an sich über mehrere andere laufen zu lassen (also das man quasi anstatt 3 &lt;td&gt; 1 &lt;td&gt; hat, dieses aber so breit ist wie die 3 anderen ).<br />
<br />
Dieses kommt aber entweder in meinem CSS Tutorial, oder man kann sich erweitert mit Tabellen beschäftigen, dort wir das ganze (beispielsweise beim W3C) gut erklärt.</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Comu</dc:creator>
			<guid isPermaLink="true">html-99/html-tutorial-5-tabellen-15077</guid>
		</item>
		<item>
			<title><![CDATA[[HTML Tutorial] #4 - Links & Bilder]]></title>
			<link>html-99/html-tutorial-4-links-bilder-14872?goto=newpost</link>
			<pubDate>Wed, 18 Jul 2012 16:26:52 GMT</pubDate>
			<description><![CDATA[Bild: http://img4host.net/upload/162120465004698ed2e2b.png  
 
_#4 - Links & Bilder 
_ 
 
Nach dem wir uns die grundlegende Struktur von HTML...]]></description>
			<content:encoded><![CDATA[<div><div style="text-align: center;"><a style="font-weight:bold;text-decoration:none;" target="blank" href="http://img4host.net/upload/162120465004698ed2e2b.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a></div><br />
<u><div style="text-align: center;"><font size="5">#4 - Links &amp; Bilder</font></div></u><br />
<br />
Nach dem wir uns die grundlegende Struktur von HTML angeschaut haben und unsere ersten Versuche mit der Formatierung von Texten geglückt ist, gehen wir nun einen Schritt weiter, zu den Elementen welche eine Webseite im heutigen Zeitalter am meisten prägen: Den Links.<br />
<br />
Die Links sind im Grunde genommen einfache Verknüpfungen wie man sie von einem herkömmlichen PC klickt. Beispiel: Ihr klickt auf ein Spiel und dieses Spiel öffnet sich. Im übertragenen Sinne ist dies also ein Link zum Startprogramm des Spiels. Genau hierfür werden diese auch in HTML genutzt, um mehrere Dateien zu &quot;verbinden&quot;.<br />
<br />
Eine Webseite besteht meistens immer aus mehreren dieser Seiten. Klar, es gibt eine Menge neuer Techniken wie JavaScript welche uns ermöglichen ziemlich große Mengen an Informationen in einer Datei zu speichern, aber dort sind wir noch nicht: machen wir klassisch eine Webseite mit mehreren Seiten.<br />
<br />
Ein Link ist folgendermaßen aufgebaut:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;http://www.google.de&quot;</span>&gt;</span> Klicke hier, um zu Google zu gelangen <span style="color:#008000">&lt;/a&gt;</span></code><hr />
</div>Wollen wir erstmal das href ausblenden und uns auf den gröbsten Teil konzentrieren: Hier sehen wir wieder den typischen HTML Tag, &lt;a&gt; CONTENT &lt;/a&gt;. In diesem Fall wird auch wieder hier der Text der zwischen &lt;a&gt; und &lt;/a&gt; steht im Browser ausgegeben und zwar als Link.<br />
<br />
Nun kommen wir jedoch zu einer neuen Variante in HTML. Den Attributen. Attribute sind Angaben welche wir innerhalb der HTML Tags platzieren. Unser Attribut mit dem &lt;a&gt; verknüpft würde also <b>href</b> heißen. href heißt &quot;Hypertext Reference&quot;. Heißt &quot;Hypertext Verweis/Verknüpfung&quot;. Da der erste Buchstabe in HTML auch für Hypertext steht ist hiermit klar was gemeint ist: Ein Verweis auf eine andere HTML Datei.<br />
<br />
Nach dem Attribut folgt ein Gleich Zeichen um diesem href etwas zuzuweisen. In unserem Fall ist es nun der Link zu Google. Wenn man auf andere Webseiten verweisen will, sollte man generell das http:// davorsetzen. Wenn die Datei nun im gleichen Ordner wie unsere andere Datei liegt, kann man das href auch einfach so setzen:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;seite.html&quot;</span>&gt;</span> Meine erste Seite <span style="color:#008000">&lt;/a&gt;</span></code><hr />
</div>Alles was wir nun machen müssen ist irgendwelchen Text auf unsere seite.html zu packen und schon haben wir unsere zweite Seite der Homepage!<br />
<br />
Nun, wir haben ja einen einfachen Text zwischen die &lt;a&gt;'s gesetzt. Hier haben wir aber nun die Möglichkeit, diverse HTML-Elemente mit einander zu verbinden. Wir hätten somit auch die Möglichkeit einen kursiven Link mit &lt;em&gt; zu machen, wobei dies meist durch CSS (was wir eventuell im nächsten Tutorial besprechen) gemacht wird!<br />
<br />
Wir können einem HTML-Element auch mehrere Attribute zuweisen. Somit hat man bei &lt;a&gt;'s noch die Möglichkeit Links in einem neuen Tab zu öffnen. Dafür wäre das Attribut <b>target</b> zuständig und der Attribut-Wert _blank.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;seite.html&quot;</span> target=<span style="color:#0000FF">&quot;_blank&quot;</span>&gt;</span> Hier zur neuen Seite im Tab <span style="color:#008000">&lt;/a&gt;</span></code><hr />
</div>Als zweites wichtiges Element gibt es Bilder. Bilder sagen einer Menge auf einer Webseite aus: Repräsentieren einen selber, wollen Lesern etwas veranschaulichen oder dienen zur Verzierung.<br />
<br />
Der IMG-Tag ist genauso wie der &lt;br /&gt; Tag ein Spezialfall. Dieser hat keinen normalen End-Tag sondert endet auch nur mit einem Slash.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#800080">&lt;img /&gt;</span></code><hr />
</div>Der IMG Tag verknüpft quasi das &quot;spezielle&quot; ohne End-Tag mit Attributen welche wir in &lt;a&gt; verwendet haben. Um nun ein Bild einzufügen, benutzen wir das Attribut src. Src steht für Source und heißt soviel wie Bildquelle. So würde also unser Code aussehen:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;html&gt;</span><br />
<span style="color:#000080">&lt;head&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;title&gt;</span> Bild <span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><br />
<span style="color:#000080">&lt;body&gt;</span><br />
&nbsp;<span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;bild.jpg&quot;</span>&gt;</span><br />
&nbsp;<span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;http://www.meinewebsite.com/bild.jpg&quot;</span>&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>Dort können wir wieder das gleiche sehen wie bei dem &lt;a&gt;. Ohne einen genauen Pfad, sondern nur den Dateinamen, geben wir Bilder an die im momentanen Ordner sind. Wenn wir Bilder einer anderen Webseite einbinden wollen, müssen wir wieder den kompletten Pfad angeben. Als weiteres Attribut kommt hier <b>alt=&quot;&quot;</b> ins Spiel. Es heißt &quot;alternative&quot; und gibt (z.B. für Browser für Blinde) eine alternative an, was auf diesem Bild drauf ist. Somit sollte man immer einen dementsprechendes Attribut hinzufügen, damit es wirklich für alle Leute kompitabel ist.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;http://www.meinewebsite.com/bild.jpg&quot;</span> alt=<span style="color:#0000FF">&quot;Affe&quot;</span>&gt;</span></code><hr />
</div>Abschließend könnt ihr euch im Netz noch diverse andere Listen von Attributen besorgen. Es gibt noch eine Menge, die man benutzen kann. Einfach mal Googlen!<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<span style="font-family: Comic Sans MS"><b>Aufgabe:</b> Erstellt eine Datei (startseite.html) und packt dort ein Bild drauf. Beim klick auf dieses Bild solltet ihr auf seite.html weitergeleitet werden. Ihr benötigt dazu eine Mischung eines Links sowie des Bildes.</span>
			
		<hr />
	</div>
</div><div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<i>Lösung</i> <input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;html&gt;</span><br />
<span style="color:#000080">&lt;head&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;title&gt;</span> Startseite <span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><br />
<span style="color:#000080">&lt;body&gt;</span><br />
&nbsp;<span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;seite.html&quot;</span>&gt;</span> <span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;bild.jpg&quot;</span> alt=<span style="color:#0000FF">&quot;Zur Startseite&quot;</span> /&gt;</span> <span style="color:#008000">&lt;/a&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>
</div>
</div>
</div><br />
<br />
Viel Spaß beim ausprobieren! :)</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Comu</dc:creator>
			<guid isPermaLink="true">html-99/html-tutorial-4-links-bilder-14872</guid>
		</item>
		<item>
			<title><![CDATA[[HTML Tutorial] Übersicht]]></title>
			<link>html-99/html-tutorial-uebersicht-14824?goto=newpost</link>
			<pubDate>Tue, 17 Jul 2012 10:07:04 GMT</pubDate>
			<description>Bild: http://img4host.net/upload/162120465004698ed2e2b.png  
 
Da die Tutorials in den Foren immer schnell untergehen habt ihr hier die Möglichkeit...</description>
			<content:encoded><![CDATA[<div><div style="text-align: center;"><a style="font-weight:bold;text-decoration:none;" target="blank" href="http://img4host.net/upload/162120465004698ed2e2b.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a></div><br />
Da die Tutorials in den Foren immer schnell untergehen habt ihr hier die Möglichkeit alle auf einen Blick zu sehen. Wenn ihr euch weitere Tutorials wünscht, fragen habt o.Ä., dann stellt diese bitte hier in den Topic!<br />
<br />
<ul><li style=""> <a href="http://u-hacks.net/tutorials-107/html-tutorial-1-einfuehrung-grundlagen-14809/" target="_blank" rel="nofollow">http://u-hacks.net/tutorials-107/htm...ndlagen-14809/</a></li><li style=""> <a href="http://u-hacks.net/tutorials-107/html-tutorial-2-die-erste-webseite-14810/" target="_blank" rel="nofollow">http://u-hacks.net/tutorials-107/htm...ebseite-14810/</a></li><li style=""> <a href="http://u-hacks.net/tutorials-107/html-tutorial-3-textformatierungen-14823/" target="_blank" rel="nofollow">http://u-hacks.net/tutorials-107/htm...erungen-14823/</a></li><li style=""> <a href="http://u-hacks.net/tutorials-107/html-tutorial-4-links-bilder-14872/" target="_blank" rel="nofollow">http://u-hacks.net/tutorials-107/htm...-bilder-14872/</a></li><li style=""> <a href="http://u-hacks.net/tutorials-107/html-tutorial-5-tabellen-15077/" target="_blank" rel="nofollow">http://u-hacks.net/tutorials-107/htm...abellen-15077/</a></li><li style=""> <a href="http://u-hacks.net/tutorials-107/html-tutorial-6-formulare-15546/" target="_blank" rel="nofollow">http://u-hacks.net/tutorials-107/htm...rmulare-15546/</a></li></ul></div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Comu</dc:creator>
			<guid isPermaLink="true">html-99/html-tutorial-uebersicht-14824</guid>
		</item>
		<item>
			<title><![CDATA[[HTML Tutorial] #3 - Textformatierungen]]></title>
			<link>html-99/html-tutorial-3-textformatierungen-14823?goto=newpost</link>
			<pubDate>Tue, 17 Jul 2012 09:57:32 GMT</pubDate>
			<description>Bild: http://img4host.net/upload/162120465004698ed2e2b.png  
 
_ #3 - Textformatierungen 
_ 
 
Nachdem wir uns nun damit beschäftigt haben wie HTML...</description>
			<content:encoded><![CDATA[<div><div style="text-align: center;"><a style="font-weight:bold;text-decoration:none;" target="blank" href="http://img4host.net/upload/162120465004698ed2e2b.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a></div><br />
<u><div style="text-align: center;"><font size="5"> #3 - Textformatierungen</font></div></u><br />
<br />
Nachdem wir uns nun damit beschäftigt haben wie HTML an sich aufgebaut ist und wie man sich am besten diese Verschachtelungen merkt geht es nun einen Schritt weiter. HTML wurde geschaffen um Informationen mit anderen zu Teilen.<br />
<br />
Man kennt es aus Word o.Ä.: Man will ein bestimmtes Wort fett hervorheben, da es entweder wichtig ist oder etwas bestimmtes Aussagen soll. Genau diese Möglichkeiten haben wir in HTML auch. Das ganze nennt man wie in der Überschrift schon angesprochen Textformatierungen.<br />
<br />
Dann fangen wir mal an. Es gibt die 3 Standard-Textformatierungen welche man per BB-Codes kennt ebenfalls in HTML. Diese sind dementsprechend <span style="font-family: Courier New">&lt;b&gt;</span> für fetten Text, <span style="font-family: Courier New">&lt;i&gt;</span> für kursiven Text und <span style="font-family: Courier New">&lt;u&gt;</span> für unterstrichenen Text.<br />
<br />
An diesem Punkt gibt es aber eine kleine Ausnahme: Die obigen 3 Tags können genutzt werden. Ich habe jedoch schon öfters die Erfahrung gemacht, dass wenn ich &lt;b&gt; und &lt;i&gt; in einem Tag nutze, dass diese dann automatisch einen Zeilenumbruch hinzufügen (kann auch völliger quatsch sein) aber aus diesem  Grund benutze ich die Tags <span style="font-family: Courier New">&lt;strong&gt;</span> als Ersatz für den fetten &lt;b&gt; Tag und <span style="font-family: Courier New">&lt;em&gt;</span> als Ersatz für &lt;i&gt;. Für &lt;u&gt; ist mir noch kein anderer Tag bekannt. (Ich habe mich hier nochmal schlau gemacht [danke an Finn], es besteht kein anderer Tag für &lt;u&gt;. Dementsprechend sind &lt;em&gt; und &lt;strong&gt; die Ausnahmen!)<br />
<br />
Im Grunde heißt das nichts anderes: In diesem Tutorial wird &lt;strong&gt; für fetten Text, &lt;em&gt; für kursiven Text und &lt;u&gt; für unterstrichenen Text genutzt.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<span style="font-family: Comic Sans MS"><b>Aufgabe:</b> Erstelle ein einfaches HTML-Dokument welches diese 3 Textformatierungen (plus normalen Text, also insgesamt 4) ausgibt. Achte darauf das du sie richtig platzierst, sie sollen alle <u>auf</u> der Webseite ausgegeben werden!</span>
			
		<hr />
	</div>
</div><div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<i>Lösung</i> <input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;html&gt;</span><br />
<span style="color:#000080">&lt;head&gt;</span><br />
&nbsp; <span style="color:#000080">&lt;title&gt;</span> Textformatierungen <span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><br />
<span style="color:#000080">&lt;body&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;span&gt;</span> Das ist ein normaler Text. <span style="color:#000080">&lt;/span&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;strong&gt;</span> Das ist ein fetter Text. <span style="color:#000080">&lt;/strong&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;em&gt;</span> Das ist ein kursiver Text. <span style="color:#000080">&lt;/em&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;u&gt;</span> Das ist ein unterstrichener Text. <span style="color:#000080">&lt;/u&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>
</div>
</div>
</div><br />
<br />
Somit seid ihr nun schon in der Lage eure Texte dementsprechend anzupassen und wichtigere Sachen hervorzuheben.<br />
<br />
Nun gibt es noch 2 wichtige Punkte: Überschriften und Zeilenumbrüche. Zeilenumbrüche sind wichtig wenn man nicht komplette Textblöcke haben will die bis zum Ende des Bildschirmrands gehen sondern diese geordnet in eine neue Reihe packen kann.<br />
<br />
In Word ist dies einfach mit der ENTER Taste machbar. In HTML gibt es dafür einen gesonderten Tag, dieser nennt sich <span style="font-family: Courier New">&lt;br /&gt;</span>. Hier seht ihr nun eine spezielle Form eines HTML Tags.<br />
<br />
Diese HTML Tags sind Anfang- und Endtag in einem. Warum ist ganz einfach zu erklären: Bei &lt;span&gt; und &lt;/span&gt; hatten wir beispielsweise einen Text den wir dazwischen ausgeben wollen. Bei &lt;br /&gt; wollen wir einen einfachen Zeilenumbruch erzeugen, wodurch hier &lt;br&gt;&lt;/br&gt; sinnlos und nur viel Schreibarbeit wäre.<br />
<br />
Aus diesem Grund hat man sich gesagt: Okay, schließt man den Tag direkt und dann brauch man sich nicht mehr Arbeit machen (denn Programmierer sind allgemein sehr schreibfaul).<br />
<br />
Wichtig hierbei ist: Das &lt;br /&gt; muss immer dahin wo die Zeile übersprungen werden soll. Du musst sie quasi genauso setzen wie als wenn du in Word ENTER drückst, um eine neue Zeile anzufangen:<br />
<br />
Ein Beispiel wäre:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;html&gt;</span><br />
<span style="color:#000080">&lt;head&gt;</span><br />
&nbsp; <span style="color:#000080">&lt;title&gt;</span> Zeilenumbruch <span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><br />
<span style="color:#000080">&lt;body&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;span&gt;</span> Text 1 <span style="color:#000080">&lt;/span&gt;</span> <span style="color:#000080">&lt;br /&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;span&gt;</span> Text 2 <span style="color:#000080">&lt;/span&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>In diesem Fall würde Text 2 nun eine Zeile darunter stehen. Ab und zu kann es auch dazu kommen das HTML erst die vorhandene Reihe mit einem &lt;br /&gt; komplett beendet. Dann muss man einfach ein zweites &lt;br /&gt; dahinter setzen um in die neue Zeile zu rücken.<br />
<br />
Als letztes Themengebiet in den Textformatierungen stehen nun die Überschriften an. Heutzutage ist es üblicherweise so das man mit CSS und Klassen die meisten Textpassagen so bearbeitet und nur noch in äußersten Notfällen auf die Überschriften zurückgreift. Trotzdem sollte jedem das bekannt sein, denn besonders am Anfang sind sie sehr hilfreich.<br />
<br />
Der Tag für eine Überschrift lautet:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;h1-6&gt;</span> Überschrift <span style="color:#000080">&lt;/h1-6&gt;</span></code><hr />
</div>h1-6 denkst du dir nun? Das ist nicht schwer zu verstehen. Die 1-6 sagen einfach nur aus, dass es folgende Arten von Überschriften gibt: &lt;h1&gt;, &lt;h2&gt;,&lt;h3&gt;,&lt;h4&gt;,&lt;h5&gt;,&lt;h6&gt;. Diese sind chronologisch angeordnet, heißt &lt;h1&gt; ist die größte Überschrift und &lt;h6&gt; die kleinste.<br />
<br />
Ab &lt;h4&gt; ist man jedoch wieder auf der normalen Textgröße wie von &lt;span&gt; angekommen. Heißt, im Grunde, wenn man diese Art von Überschriften nutzt ist es klug nur die von 1-3 zu nutzen, da der Rest einfach zu klein ist.<br />
<br />
Wenn man sich nun alle Sachen anschaut welche wir nun hier besprochen haben, kommen wir auf folgendes Ergebnis:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;html&gt;</span><br />
<span style="color:#000080">&lt;head&gt;</span><br />
&nbsp; <span style="color:#000080">&lt;title&gt;</span> Textformatierungen <span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><br />
<span style="color:#000080">&lt;body&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;span&gt;</span> Das ist ein normaler Text. <span style="color:#000080">&lt;/span&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;strong&gt;</span> Das ist ein fetter Text. <span style="color:#000080">&lt;/strong&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;em&gt;</span> Das ist ein kursiver Text. <span style="color:#000080">&lt;/em&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;u&gt;</span> Das ist ein unterstrichener Text. <span style="color:#000080">&lt;/u&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;h1&gt;</span> Große Überschrift <span style="color:#000080">&lt;/h1&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;h2&gt;</span> Normale Überschrift <span style="color:#000080">&lt;/h2&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;h3&gt;</span> Kleine Überschrift <span style="color:#000080">&lt;/h3&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;h4&gt;</span> Normale Textgröße <span style="color:#000080">&lt;/h4&gt;</span><br />
&nbsp;<span style="color:#000080">&lt;br /&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>Wie man im Endeffekt nun sieht, ist HTML eine reine Sache die man mit der Zeit auswendig lernen muss. Ihr habt nun die dementsprechenden Tags und könnt damit schon eine Menge anstellen. Am besten probiert ihr euch selber damit aus, denn nur so kann man sich die Sachen auch einprägen!</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Comu</dc:creator>
			<guid isPermaLink="true">html-99/html-tutorial-3-textformatierungen-14823</guid>
		</item>
		<item>
			<title><![CDATA[[HTML Tutorial] #2 - Die erste Webseite!]]></title>
			<link>html-99/html-tutorial-2-erste-webseite-14810?goto=newpost</link>
			<pubDate>Mon, 16 Jul 2012 19:25:04 GMT</pubDate>
			<description>Bild: http://img4host.net/upload/162120465004698ed2e2b.png  
 
_ #2 - Die erste Webseite! 
_ 
 
Nach einer Menge Theorie wollen wir doch nun einmal...</description>
			<content:encoded><![CDATA[<div><div style="text-align: center;"><a style="font-weight:bold;text-decoration:none;" target="blank" href="http://img4host.net/upload/162120465004698ed2e2b.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a></div><br />
<u><div style="text-align: center;"><font size="5"> #2 - Die erste Webseite!</font></div></u><br />
<br />
Nach einer Menge Theorie wollen wir doch nun einmal anfangen! Also. In HTML werden wir die ganze Zeit über mit so genannten Tags arbeiten. Denkst dir nun bestimmt: Was sind Tags? Eventuell kennst du sie ja aus dem Spielebereich: Es sind &quot;Kurzformen&quot; von Namen oder Befehlen. Genauso ist das in HTML. Alle Tags erfüllen einen bestimmten Zweck.<br />
<br />
Ein Tag ist folgendermaßen aufgebaut:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;tag&gt;</span> IRGENDWAS HIER <span style="color:#000080">&lt;/tag&gt;</span></code><hr />
</div>Wie man sehen kann fängt ein Tag an sich immer mit einem kleiner als Zeichen an und endet mit einem größer als Zeichen. Danach kommt der entsprechende Content (Content beschreibt man als &quot;Inhalt&quot; - das wirst du im laufe des Tutorials öfters hören!). Das ganze schließt man dann wieder mit dem Tag PLUS einem Slash-Zeichen (Schrägstrich nach rechts ab).<br />
<br />
Das ganze erinnert sehr an die vorhandenen BB-Codes die man eventuell bereits kennt. Diese stammen von HTML ab, man wollte den Nutzern damit die Möglichkeit bieten ohne dementsprechende Kenntnisse auch ihre Texte zu formatieren. Wobei diese auch schon wieder auf dem Rückzug sind, WYSIWYG (What You See Is What You Get ) Editoren sind auf dem Weg (das ist dies, was man beispielsweise bei Word und Excel findet, direkte Formatierung).<br />
<br />
Um unseren kleinen netten Browser (sei es Internet Explorer, Firefox, Chrome oder Opera) nun zu sagen, dass wir ihm HTML-Code ausgeben wollen, müssen wir erst einmal mit dem Grundgerüst anfangen. Den kompletten Code den man in HTML schreibt, wird im <span style="font-family: Courier New">&lt;html&gt;</span>-Tag eingebunden. Heißt in etwa:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;html&gt;</span><br />
Mehr Content<br />
Mehr Content<br />
Mehr Content<br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>In unserem Fall würde &quot;mehr Content&quot; nun den den Teil ersetzen, wo wir unsere verschiedenen Tags reinsetzen um dementsprechend etwas auf unserer ersten Webseite auszugeben.<br />
<br />
So, also der <span style="font-family: Courier New">&lt;html&gt;</span> Tag gibt uns nun die Möglichkeit den Code zu schreiben. Ich sage den Leuten immer: Man kann sich das als den menschlichen Körper vorstellen. der &lt;html&gt; Tag ist in dem Fall unser kompletter Körper. Nun gibt es 2 weitere Teile, die unterschieden werden:<br />
<br />
<ul><li style=""><span style="font-family: Courier New">&lt;head&gt;</span></li><li style=""><span style="font-family: Courier New">&lt;body&gt;</span></li></ul><br />
<br />
Man kann sich schon in etwa vorstellen, wie das ganze funktionieren soll, wenn ich sagte das man das alles in etwa auf den menschlichen Körper übertragen kann. Der Kopf ist in dem Fall das Element (&lt;head&gt;) das alles steuert und im &lt;body&gt; Tag erfolgt dementsprechend die Ausgabe der einzelnen Elemente.<br />
<br />
Quasi kommt in den &lt;head&gt; Teil alles rein was <b>Websiteübergreifend</b> ist. Heißt, der Titel im Tab, Einbindung von externen Dateien o.Ä. passiert alles dort oben. Im &lt;body&gt; Tag findet man dann nur die Sachen, die man wirklich auf dem Bildschirm auch visuell sehen kann, wie Tabellen, Text o.Ä.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<span style="font-family: Comic Sans MS"><b>Aufgabe:</b> Erstelle dein erstes HTML-Dokument mit den oben genannten Informationen. Denke dabei: Jeder Tag der geöffnet wurde muss auch wieder geschlossen werden (außer in ganz seltenen Ausnahmen) und man kann sich das Dokument so wie den menschlichen Körper vorstellen.</span>
			
		<hr />
	</div>
</div><div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<i>Lösung</i> <input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;html&gt;</span><br />
<span style="color:#000080">&lt;head&gt;</span><br />
&nbsp;WEBSITEÜBERGREIFENDE INFORMATIONEN<br />
<span style="color:#000080">&lt;/head&gt;</span><br />
<span style="color:#000080">&lt;body&gt;</span><br />
&nbsp;AUSGABEINFORMATIONEN<br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>
</div>
</div>
</div><br />
<br />
Super Arbeit wenn du das hingekriegt hast! Ich hoffe du hast nicht geschummelt. ;) Wenn du alles so weit verstanden hast, bist du schon auf dem richtigen Weg HTML zu lernen. Denn alles was jetzt kommt, basiert darauf, die Tags richtig ineinander zu setzen und die Verschachtelungen zu erkennen.<br />
<br />
Um unsere erste kleine Webseite zu erstellen, wollen wir der Webseite einen Titel geben der dementsprechend im Tab angezeigt wird. Das machen wir mit dem <span style="font-family: Courier New">&lt;title&gt;</span> Tag. Dieser ist Websiteübergreifend. Was heißt das? Genau: Er wird nicht auf der Webseite an sich ausgegeben sondern im Tab, muss daher in den &lt;head&gt; Teil.<br />
<br />
Ein Beispiel wäre von daher:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;title&gt;</span> Meine erste Website <span style="color:#000080">&lt;/title&gt;</span></code><hr />
</div>Natürlich muss dieser Code dann dementsprechend platziert werden. So, allgemein wenn du Tutorials ließt die rund um die Programmierung gehen hast du sicherlich schon festgestellt was Hello World! heißt. Das ist quasi der erste Textabsatz den man immer wieder findet, wenn man in irgendetwas Programmierbares einsteigt.<br />
<br />
Um normalen Text auszugeben benutzen wir den <span style="font-family: Courier New">&lt;span&gt;</span> Tag. Dieser gibt uns einen normalen Textabsatz zurück. Dieser wird, wie die meisten Tags, am ende wieder mit dem Slash-Tag (End-Tag) geschlossen.<br />
<br />
Hier ist nun aber die Besonderheit: Dies ist unser erster Text den wir [u]auf[/b] der Webseite ausgeben wollen und nicht Webseiteübergreifend wodurch wir diesen Tag in den &lt;body&gt; Tag packen. Das ganze ist, wie du sicherlich schon gemerkt hast, nach einer Zeit ziemlich verschachtelt.<br />
<br />
So, wenn du nun alles richtig gesetzt hast, dann müsste das Ergebnis am Ende bei dir so aussehen:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;html&gt;</span><br />
<span style="color:#000080">&lt;head&gt;</span><br />
&nbsp; <span style="color:#000080">&lt;title&gt;</span> Meine erste Webseite <span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><br />
<span style="color:#000080">&lt;body&gt;</span><br />
&nbsp; <span style="color:#000080">&lt;span&gt;</span> Hello World! <span style="color:#000080">&lt;/span&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>Die Leerzeichen zwischen dem Tag-Content habe ich mir so angewöhnt. Ich persönlich finde man kann dadurch den Text besser lesen, andere meinen ohne Leerzeichen ist es einfacher, dort musst du deine eigene Art finden wie du am besten mit klar kommst!<br />
<br />
Um dir das ganze nun anzugucken, speicherst du die Datei in deinem Editor als .html ab. (Vorsicht: Unten musst du .* Alle Dateien auswählen, und nicht nur Text (.txt)!)<br />
<br />
Wenn du dies getan hast, kannst du mit einem Rechtsklick auf die Datei -&gt; Öffnen mit -&gt; [beliebiger Browser hier einfügen :p] deine Datei öffnen und du hast den ersten Erfolg - deine erste, wenn auch kleine Webseite, ist fertig!</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Comu</dc:creator>
			<guid isPermaLink="true">html-99/html-tutorial-2-erste-webseite-14810</guid>
		</item>
		<item>
			<title><![CDATA[[HTML Tutorial] #1 - Einführung / Grundlagen]]></title>
			<link>html-99/html-tutorial-1-einfuehrung-grundlagen-14809?goto=newpost</link>
			<pubDate>Mon, 16 Jul 2012 19:22:10 GMT</pubDate>
			<description>Bild: http://img4host.net/upload/162120465004698ed2e2b.png  
 
_ #1 - Einführung / Grundlagen 
_ 
 
 
Hallo! Erst einmal vielen Dank das du dich für...</description>
			<content:encoded><![CDATA[<div><div style="text-align: center;"><a style="font-weight:bold;text-decoration:none;" target="blank" href="http://img4host.net/upload/162120465004698ed2e2b.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a></div><br />
<u><div style="text-align: center;"><font size="5"> #1 - Einführung / Grundlagen</font></div></u><br />
<br />
<br />
Hallo! Erst einmal vielen Dank das du dich für dieses Tutorial von mir entschieden hast. Ich weiß, dass es bereits eine Menge an Tutorials gibt welche auch recht Anfängerfreundlich sind. In diesem Tutorial will ich jedoch noch einmal ein Hauptaugenmerk auf Anfänger legen. Heißt:<br />
<br />
Ich bin selbst nicht perfekt und weiß, dass es bestimmt den ein oder anderen Fehler in diesem Tutorial gibt. Im ersten Moment geht es mir jedoch darum, euch HTML und die Struktur näher zu bringen. So öfter man es verwendet wird man auch die neusten Techniken von alleine dazu lernen, jedoch weiß ich selbst wie schwer so ein Einstieg sein kann.<br />
<br />
Man sieht ja immer nur die Webdesigner als Beispiel: Diese verdienen schon einmal gut 200&#8364; pro Webseite und dementsprechend muss man sich denken, dass dort hinter eine Menge Arbeit steckt. Das tut es durchaus, aber es ist nicht so schwer zu erlernen wie manche vielleicht denken mögen.<br />
<br />
Ebenfalls kursiert in manchen Kreisen die Ansicht dass man um professionell hochwertige Webseiten erstellen zu können die teuerste Software braucht. Dies ist im heutigen Zeitalter nicht mehr so: Es gibt genug Open-Source (kostenlos, für alle frei verfügbar, offener Quellcode) Programme, welchen einem das &quot;Programmieren&quot; vereinfachen.<br />
<br />
Weiterhin versuche ich aber euch die genannten Themengebiete so gut wie möglich näher zu bringen. Ich hoffe das Tutorial ist dementsprechend gut strukturiert und aufgebaut, um euch einen ersten kleinen Einblick zu geben.<br />
<br />
Was wichtig ist: Das Interesse! Klar hilft das Tutorial euch die Grundlagen beizubringen, aber wenn man nicht selbst etwas damit rumprobiert und seine eigenen Werke erstellt nützt es im Endeffekt alles nichts.<br />
<br />
Als letzten Tipp: Ihr solltet nicht so viele Sachen auf einmal machen. Ich empfehle euch maximal 2-3 der Tutorials pro Tag um das ganze erstmal ruhen zu lassen. Probiert mit den vorhandenen Sachen ein bisschen aus, da ihr sonst  später immer wieder nachgucken müsst inwiefern was verwendet wird. Geht die ganze Sache lieber langsam an!<br />
<br />
Ihr solltet aber bereits nach einer Woche in der Lage sein dementsprechend HTML anwenden zu können. Wichtig ist: Dieses Tutorial bezieht sich <b>nur</b> auf HTML. Falls ihr das dementsprechende Gegenstück zum Design, CSS (Cascading Style Sheet) lernen möchtet, müsst ihr euch noch etwas gedulden.<br />
<br />
<br />
<font color="SandyBrown"><font size="4">Aller Anfang ist schwer...</font></font><br />
<br />
<br />
... aber er ist machbar. Wahrscheinlich hast du bereits alles was du benötigst auf deinem PC: Einen Browser sowie einen Editor. Mehr braucht ihr garnicht, um eure eigene kleine Webseite erstellen zu können!<br />
<br />
<b>Beachtet: Programme wie Microsoft Frontpage oder ähnliches nehmen euch diverse Arbeit ab. Wenn ihr wirklich daran interessiert seid und selber wissen wollt, wie solche Strukturen aufgebaut sind, solltet ihr den Editor als erste Wahl vorziehen. Dieser gibt noch <u>keinerlei</u> Hilfe und ist somit bestens geeignet um sich das ganze einzuprägen</b><br />
<br />
Ebenfalls wird für HTML kein bekannter &quot;Webserver&quot; gebraucht. HTML ist ein sozusagen &quot;Webstandard&quot; und dieser funktioniert Clientseitig. Heißt, das ganze funktioniert auch auf ihrem PC, ohne irgendwelche extra Programme installiert zu haben.<br />
<br />
Eine andere Frage die immer wieder auftaucht, ob man bei dem erstellen von Webseiten mit dem Internet verbunden sein muss. Antwort: Nein! Du kannst auch ganz bequem in der Zugfahrt dir deinen Code mit einem Laptop zusammenbauen.<br />
<br />
<br />
<font color="SandyBrown"><font size="4">Was ist HTML eigentlich?</font></font><br />
<br />
<br />
Die Frage kann man sozusagen beantworten mit: Die Grundlage aller Webseiten! Damals wurde HTML von einem Wissenschaftler erfunden (mir fällt der Name momentan nicht mehr ein) um seine Ergebnisse mit anderen zu teilen. So hatte er also die Grundlegenden Elemente von HTML erschaffen wie ganz normale Texte, Bilder, Links, Tabellen und Listen. Alles das wird bis heute genutzt!<br />
<br />
Es gibt im Grunde keine Webseiten welche ohne HTML auskommen, außer diese, welche beispielsweise nur zu Berechnungen da sind (dieses sind aber gesonderte Dateien!). Man kann sagen: Ohne HTML, keine Webseite.<br />
<br />
Zum Schluss ist noch anzumerken das du den Quelltext (HTML und CSS Code) jeder Webseite anschauen kannst. Dazu musst du einfach nur auf eine Webseite mit Rechtsklick klicken, und dir wird 'Quelltext anzeigen' angezeigt. Nun kannst du das Werk von jemand anderem bestaunen!</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Comu</dc:creator>
			<guid isPermaLink="true">html-99/html-tutorial-1-einfuehrung-grundlagen-14809</guid>
		</item>
		<item>
			<title>Korreckt oder nicht ? (Für Buca-Projekt)</title>
			<link>html-99/korreckt-nicht-fuer-buca-projekt-13912?goto=newpost</link>
			<pubDate>Thu, 21 Jun 2012 15:59:17 GMT</pubDate>
			<description><![CDATA[HTML: 
--------- 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
<html> 
<head> 
  <meta...]]></description>
			<content:encoded><![CDATA[<div><div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot; &quot;http://www.w3.org/TR/html4/strict.dtd&quot;&gt;</span><br />
<span style="color:#000080">&lt;html&gt;</span><br />
<span style="color:#000080">&lt;head&gt;</span><br />
&nbsp; <span style="color:#000080">&lt;meta content=<span style="color:#0000FF">&quot;text/html; charset=ISO-8859-1&quot;</span><br />
&nbsp;http-equiv=&quot;content-type&quot;&gt;</span><br />
&nbsp; <span style="color:#000080">&lt;title&gt;</span>FC Barcelona Stadionbesichtigung<span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><br />
<span style="color:#000080">&lt;body style=<span style="color:#0000FF">&quot;background-color: rgb(255, 204, 51);&quot;</span>&gt;</span><br />
<span style="color:#000080">&lt;h1<br />
&nbsp;style=<span style="color:#0000FF">&quot;font-family: Andalus; font-size: 3.4em; text-align: center;&quot;</span>&gt;</span><br />
<span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;FCB.png&quot;</span>&gt;</span>FC Barcelona Stadionbesichtigung<br />
<span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;FCB.png&quot;</span>&gt;</span><span style="color:#000080">&lt;/h1&gt;</span><br />
<span style="color:#000080">&lt;br&gt;</span><br />
<span style="color:#000080">&lt;div<br />
&nbsp;style=<span style="color:#0000FF">&quot;text-align: center; font-size: 1.5em; font-style: normal; font-family: Arial;&quot;</span>&gt;</span><br />
Das Fußballstadion von Barcelona ist das drittgrößte Fußballstadion der<br />
Welt, nach dem Stadion von Sao Paulo (Brasilien) und Mexiko City.<br />
Das Camp Nou in Barcelona hat eine Kapazität für 110.000 Zuschauer, und<br />
bei jedem Spiel ist praktisch jeder Sitzplatz belegt - so groß ist die<br />
Fußball-Leidenschaft der Katalanen.<br />
<span style="color:#000080">&lt;p&gt;</span><span style="color:#800080">&lt;img style=<span style="color:#0000FF">&quot;width: 498px; height: 353px;&quot;</span><br />
&nbsp;src=<span style="color:#0000FF">&quot;Camp-Nou-best.jpg&quot;</span>&gt;</span><span style="color:#000080">&lt;/p&gt;</span><br />
Die Besichtigung des Camp Nou ist die Sehenswürdigkeit schlechthin in<br />
Barcelona!<br />
Falls Ihnen also an einer Besichtigung liegt, empfehlen wir Ihnen, die<br />
Reservierung für die Besichtigung des Camp Nou vor Reisebeginn zu<br />
buchen.<br />
<span style="color:#000080">&lt;br&gt;</span><br />
Besichtigen Sie die Anlage, das Spielfeld und das Fußballmuseum; Sie<br />
werden auf eigene Faust die Umkleideräume der Spieler, den<br />
Pressekonferenzbereich und den VIP-Aufenthaltsraum besichtigen können<br />
und bekommen außerdem die Gelegenheit, sich auf die Spielerbänke und<br />
die VIP-Sitze zu setzen - die besten Sitzplätze im Stadion!<br />
<span style="color:#000080">&lt;/div&gt;</span><br />
<span style="color:#000080">&lt;div<br />
&nbsp;style=<span style="color:#0000FF">&quot;text-align: center; font-style: normal; font-family: Arial; margin-top: 100px;&quot;</span>&gt;</span><br />
<span style="color:#000080">&lt;span style=<span style="color:#0000FF">&quot;font-weight: bold;&quot;</span>&gt;</span>Adresse:<span style="color:#000080">&lt;/span&gt;</span><br />
<span style="color:#000080">&lt;br&gt;</span><br />
Barcelona FC <span style="color:#000080">&lt;br&gt;</span><br />
Aristides Maillol, <span style="color:#000080">&lt;br&gt;</span><br />
entrance no 7 <span style="color:#000080">&lt;br&gt;</span><br />
Barcelona, 08028<br />
<span style="color:#000080">&lt;p&gt;</span><span style="color:#000080">&lt;/p&gt;</span><br />
<span style="color:#000080">&lt;span style=<span style="color:#0000FF">&quot;font-weight: bold;&quot;</span>&gt;</span> Öffnungszeiten: <span style="color:#000080">&lt;/span&gt;</span><br />
<span style="color:#000080">&lt;br&gt;</span><br />
10:00 Uhr - 20:00 Uhr (Montag - Samstag)<span style="color:#000080">&lt;br&gt;</span><br />
Sonntag und Feiertage (10:00 Uhr - 14:30 Uhr)<br />
<span style="color:#000080">&lt;p&gt;</span><span style="color:#000080">&lt;/p&gt;</span><br />
<span style="color:#000080">&lt;span style=<span style="color:#0000FF">&quot;font-weight: bold;&quot;</span>&gt;</span> Eintrittspreis an der<br />
Tageskasse am jeweiligen Tag: <span style="color:#000080">&lt;/span&gt;</span><br />
<span style="color:#000080">&lt;br&gt;</span><br />
Erwachsene: €22,00 <span style="color:#000080">&lt;br&gt;</span><br />
Kinder: €16,50<br />
<span style="color:#000080">&lt;p&gt;</span><span style="color:#000080">&lt;/p&gt;</span><br />
<span style="color:#000080">&lt;br&gt;</span><br />
Hier noch eine kleine Hilfe um das Camp Nou leichter zu finden:<br />
<span style="color:#000080">&lt;br&gt;</span><br />
<span style="color:#000080">&lt;iframe marginheight=<span style="color:#0000FF">&quot;0&quot;</span> marginwidth=<span style="color:#0000FF">&quot;0&quot;</span><br />
&nbsp;src=<span style="color:#0000FF">&quot;http://maps.google.de/maps?f=q<b><i>&amp;amp;</i></b>source=s_q<b><i>&amp;amp;</i></b>hl=de<b><i>&amp;amp;</i></b>geocode=<b><i>&amp;amp;</i></b>q=Aristides+Maillol,+entrance+no+7+Barcelona,+08028<b><i>&amp;amp;</i></b>aq=<b><i>&amp;amp;</i></b>sll=41.740578,2.135468<b><i>&amp;amp;</i></b>sspn=0.834108,2.05307<b><i>&amp;amp;</i></b>ie=UTF8<b><i>&amp;amp;</i></b>hq=Aristides+Maillol,+entrance+no+7+Barcelona,+08028<b><i>&amp;amp;</i></b>hnear=<b><i>&amp;amp;</i></b>radius=15000<b><i>&amp;amp;</i></b>ll=41.378452,2.121118<b><i>&amp;amp;</i></b>spn=0.071946,0.071946<b><i>&amp;amp;</i></b>t=m<b><i>&amp;amp;</i></b>output=embed&quot;</span><br />
&nbsp;frameborder=<span style="color:#0000FF">&quot;0&quot;</span> height=<span style="color:#0000FF">&quot;350&quot;</span> scrolling=<span style="color:#0000FF">&quot;no&quot;</span><br />
&nbsp;width=<span style="color:#0000FF">&quot;425&quot;</span>&gt;</span><span style="color:#000080">&lt;/iframe&gt;</span><span style="color:#000080">&lt;br&gt;</span><br />
<span style="color:#000080">&lt;small&gt;</span><span style="color:#000080">&lt;a<br />
&nbsp;href=<span style="color:#0000FF">&quot;http://maps.google.de/maps?f=q<b><i>&amp;amp;</i></b>source=embed<b><i>&amp;amp;</i></b>hl=de<b><i>&amp;amp;</i></b>geocode=<b><i>&amp;amp;</i></b>q=Aristides+Maillol,+entrance+no+7+Barcelona,+08028<b><i>&amp;amp;</i></b>aq=<b><i>&amp;amp;</i></b>sll=41.740578,2.135468<b><i>&amp;amp;</i></b>sspn=0.834108,2.05307<b><i>&amp;amp;</i></b>ie=UTF8<b><i>&amp;amp;</i></b>hq=Aristides+Maillol,+entrance+no+7+Barcelona,+08028<b><i>&amp;amp;</i></b>hnear=<b><i>&amp;amp;</i></b>radius=15000<b><i>&amp;amp;</i></b>ll=41.378452,2.121118<b><i>&amp;amp;</i></b>spn=0.071946,0.071946<b><i>&amp;amp;</i></b>t=m&quot;</span><br />
&nbsp;style=<span style="color:#0000FF">&quot;color: rgb(0, 0, 255); text-align: left;&quot;</span>&gt;</span>Größere<br />
Kartenansicht<span style="color:#008000">&lt;/a&gt;</span><span style="color:#000080">&lt;/small&gt;</span><br />
<span style="color:#000080">&lt;/div&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>Ist das in Ordnung ?</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>AlexEHM</dc:creator>
			<guid isPermaLink="true">html-99/korreckt-nicht-fuer-buca-projekt-13912</guid>
		</item>
		<item>
			<title><![CDATA[[HTML] Phase5 - Frage]]></title>
			<link>html-99/html-phase5-frage-12109?goto=newpost</link>
			<pubDate>Fri, 11 May 2012 10:31:05 GMT</pubDate>
			<description>Yho,  
 
da ich des öfteren für Kollegen Computermäßige Sachen mache, muss ich diesesmal für jemanden eine Homepage erstellen. Es handelt sch um eine...</description>
			<content:encoded><![CDATA[<div>Yho, <br />
<br />
da ich des öfteren für Kollegen Computermäßige Sachen mache, muss ich diesesmal für jemanden eine Homepage erstellen. Es handelt sch um eine Schulaufgabe, wo die Schüler eine Homepage mit &quot;Phase5&quot; erstellen sollen.  <br />
Da ich von diesem HTML Editor nichts halte und lieber mit Dreamweaver, sowie Notepad++ meine HTML/CSS Dateien erstelle, hab ich mal eine Frage: <br />
<br />
Setzt Phase5 irgendwelche &quot;Kennzeichen&quot; in die HTML Datei? - Sprich: Würde es auffallen, dass ich anstatt Phase5 einen anderen Editor benutzt habe? <br />
<br />
Mit freundlichem Gruß!</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Prinzessin Paat</dc:creator>
			<guid isPermaLink="true">html-99/html-phase5-frage-12109</guid>
		</item>
		<item>
			<title>Zeichen werden nicht richtig dargestellt</title>
			<link>html-99/zeichen-werden-nicht-richtig-dargestellt-11916?goto=newpost</link>
			<pubDate>Sun, 06 May 2012 17:13:14 GMT</pubDate>
			<description><![CDATA[Hallo, 
 
ich wollte mir gerade son kleines Script bauen. 
 
Hab dann von Facebook die Loginseite mit 
 
Seite Speichern unter -> Webseite, nur Html...]]></description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
ich wollte mir gerade son kleines Script bauen.<br />
<br />
Hab dann von Facebook die Loginseite mit<br />
<br />
Seite Speichern unter -&gt; Webseite, nur Html<br />
<br />
gespeichert.<br />
<br />
Jetzt werden die Zeichen aber nicht richtig dargestellt:<br />
<br />
<img src="http://s7.directupload.net/images/120506/5l7rd24m.png" border="0" alt="" /><br />
<br />
Was kann man dagegen tun?</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>!lkay</dc:creator>
			<guid isPermaLink="true">html-99/zeichen-werden-nicht-richtig-dargestellt-11916</guid>
		</item>
		<item>
			<title>HTML Editor</title>
			<link>html-99/html-editor-11297?goto=newpost</link>
			<pubDate>Mon, 23 Apr 2012 09:29:34 GMT</pubDate>
			<description>Hi, 
 
gibt es einen Editor als Downlaod, der genauso aufgebaut ist wie dieser hier? (http://www.quackit.com/html/online-html-editor/)</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
gibt es einen Editor als Downlaod, der genauso aufgebaut ist wie <a href="http://www.quackit.com/html/online-html-editor/" target="_blank" rel="nofollow">dieser hier?</a></div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Shane</dc:creator>
			<guid isPermaLink="true">html-99/html-editor-11297</guid>
		</item>
		<item>
			<title>Frage player verlinken</title>
			<link>html-99/frage-player-verlinken-11016?goto=newpost</link>
			<pubDate>Tue, 17 Apr 2012 19:51:47 GMT</pubDate>
			<description>Guten abend liebe com :) 
 
 
Also ich möchte fragen wie man es hinbekommt dass wenn man jetz einen player in einer page einbindet und eine...</description>
			<content:encoded><![CDATA[<div>Guten abend liebe com :)<br />
<br />
<br />
Also ich möchte fragen wie man es hinbekommt dass wenn man jetz einen player in einer page einbindet und eine selectbox, wie man wenn man dann in der selectbox folge 2 anklickt bzw. auswählt dann auch im player folge 2 erscheint?<br />
<br />
ich hoffe ihr versteht wie ich es meine :/<br />
<br />
MfG SKindred :)</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Skindred</dc:creator>
			<guid isPermaLink="true">html-99/frage-player-verlinken-11016</guid>
		</item>
		<item>
			<title><![CDATA[[HTML] Seite wird nicht vollständig angezeigt]]></title>
			<link>html-99/html-seite-wird-nicht-vollstaendig-angezeigt-10981?goto=newpost</link>
			<pubDate>Tue, 17 Apr 2012 10:51:07 GMT</pubDate>
			<description>Moin, 
 
ich hab das Problem, dass meine Website, die ich bei funpic habe, nicht vollständig angezeigt wird. Ich hab leider garkein Plan woran das...</description>
			<content:encoded><![CDATA[<div>Moin,<br />
<br />
ich hab das Problem, dass meine Website, die ich bei funpic habe, nicht vollständig angezeigt wird. Ich hab leider garkein Plan woran das liegen kann, wäre schön, wenn jemand den Fehler finden würde.<br />
Habe die Seite übrigens mit nem Free Template gemacht, falls jemand wissen will welches, dann pn.<br />
<br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;<br />
&lt;html dir=&quot;ltr&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br />
<br />
&lt;head&gt;<br />
&lt;title&gt;Knuddels-Bots&lt;/title&gt;<br />
&lt;meta content=&quot;text/html; charset=utf-8&quot; http-equiv=&quot;Content-Type&quot; /&gt;<br />
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;screen&quot; href=&quot;css/style.css&quot; /&gt;<br />
&nbsp; &nbsp; &lt;script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'&gt;&lt;/script&gt;<br />
&nbsp; &nbsp; &lt;script type='text/javascript' src='js/hashchange.js'&gt;&lt;/script&gt;<br />
&nbsp; &nbsp; &lt;script type='text/javascript' src='js/dynamicpage.js'&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
<br />
&lt;body&gt;<br />
&lt;div id=&quot;wrapper&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;header&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;navi&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ul class=&quot;links&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;a href=&quot;index.html&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;a href=&quot;news.html&quot;&gt;News&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;a href=&quot;downloads.html&quot;&gt;Download&lt;/a&gt;&lt;/li&gt; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;a href=&quot;passwoerter.html&quot;&gt;Passwoerter&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;a href=&quot;contact.html&quot;&gt;Contact&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/ul&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;a href=&quot;http://trololo1234.tr.funpic.de/Download/#mafiabot.html&quot;&gt;Mafia-Bot&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;content&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;content_inner&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;h1&gt;Our Downloads&lt;/h1&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ul&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;Mafia-Bot v5.1&lt;/li&gt; &lt;a href=&quot;http://www.file-upload.net/download-4275304/Builded.exe.html&quot;&gt;Download here&lt;/a&gt;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;img src=&quot;https://u-img.net/img/5338Gi.png&quot; alt=&quot;Mafia&quot;&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;Quiz-Bot&lt;/li&gt; &lt;a href=&quot;http://www.file-upload.net/download-4275729/Builded.exe.html&quot;&gt;Download here&lt;/a&gt;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;img src=&quot;https://u-img.net/img/2339Zr.png&quot; alt=&quot;Quiz&quot;&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;Bei Fragen hier melden &lt;a href=&quot;#&quot; title=&quot;http://trololo1234.tr.funpic.de/Download/#contact.html&quot;&gt;Contacs&lt;/a&gt; &lt;/p&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/ul&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;!-- It's NOT allowed to delete the Backlink to the autor! &gt;&gt;&gt; Infos under: http://u-hacks.net/ &lt;&lt;&lt; --&gt;<br />
<br />
&lt;/body&gt;<br />
<br />
&lt;/html&gt;</code><hr />
</div>
</div>
</div>
</div></div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Flopa</dc:creator>
			<guid isPermaLink="true">html-99/html-seite-wird-nicht-vollstaendig-angezeigt-10981</guid>
		</item>
		<item>
			<title>Text zentrieren</title>
			<link>html-99/text-zentrieren-10951?goto=newpost</link>
			<pubDate>Mon, 16 Apr 2012 14:53:26 GMT</pubDate>
			<description>Huhu Liebe com 
Ich bin gerade dabei eine page zu schreiben aber egal was ich mache ich bekomm den text auf der Startseite einfach nicht zentriert....</description>
			<content:encoded><![CDATA[<div>Huhu Liebe com<br />
Ich bin gerade dabei eine page zu schreiben aber egal was ich mache ich bekomm den text auf der Startseite einfach nicht zentriert.<br />
vielleicht könnt ihr mir helfen :)<br />
Index.html<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;!DOCTYPE html&gt;</span><br />
<span style="color:#000080">&lt;html&gt;</span><br />
<span style="color:#000080">&lt;head&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;title&gt;</span>Überschrift<span style="color:#000080">&lt;/title&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;link rel=<span style="color:#0000FF">&quot;stylesheet&quot;</span>&nbsp; type=<span style="color:#0000FF">&quot;text/css&quot;</span> href=<span style="color:#0000FF">&quot;style.css&quot;</span> /&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><br />
<span style="color:#000080">&lt;body&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;header&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;Bilder/Header.png&quot;</span>&nbsp; /&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/div&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;menue_bg&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;menue&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;index.html&quot;</span>&gt;</span><span style="color:#000080">&lt;div class=<span style="color:#0000FF">&quot;menue_Button&quot;</span>&gt;</span><span style="color:#000080">&lt;p&gt;</span>START<span style="color:#000080">&lt;/p&gt;</span><span style="color:#000080">&lt;/div&gt;</span><span style="color:#008000">&lt;/a&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;index.html&quot;</span>&gt;</span><span style="color:#000080">&lt;div class=<span style="color:#0000FF">&quot;menue_Button&quot;</span>&gt;</span><span style="color:#000080">&lt;p&gt;</span>STREAM<span style="color:#000080">&lt;/p&gt;</span><span style="color:#000080">&lt;/div&gt;</span><span style="color:#008000">&lt;/a&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;index.html&quot;</span>&gt;</span><span style="color:#000080">&lt;div class=<span style="color:#0000FF">&quot;menue_Button&quot;</span>&gt;</span><span style="color:#000080">&lt;p&gt;</span>RENDER<span style="color:#000080">&lt;/p&gt;</span><span style="color:#000080">&lt;/div&gt;</span><span style="color:#008000">&lt;/a&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008000">&lt;a href=<span style="color:#0000FF">&quot;index.html&quot;</span>&gt;</span><span style="color:#000080">&lt;div class=<span style="color:#0000FF">&quot;menue_Button&quot;</span>&gt;</span><span style="color:#000080">&lt;p&gt;</span>SIGNATUREN<span style="color:#000080">&lt;/p&gt;</span><span style="color:#000080">&lt;/div&gt;</span><span style="color:#008000">&lt;/a&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;/div&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/div&gt;</span><br />
&nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;webseite&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;infobox&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;info_text&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;h1&gt;</span>Hallo One Piece Junkie's<span style="color:#000080">&lt;/h1&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;p&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  Ich möchte euch auf meiner Webseite alle Folgen von One Piece,ein paar Render<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  und ein paar von mir angefertige Signaturen zur verfügung stellen.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  Ich hoffe ihr habt spaß auf meiner Page :)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;/p&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;Ruffy&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;Bilder/Startseite_render.png&quot;</span> /&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;/div&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;/div&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;/div&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/div&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;Footbar&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;Bilder/footbar_03.png&quot;</span>&nbsp; /&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <span style="color:#000080">&lt;/div&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div><br />
style.css<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code">body {<br />
background-color:#0d0f13;<br />
margin:0px auto;<br />
min-width:960px;<br />
<br />
}<br />
#header {<br />
width:100%;<br />
height:230px;<br />
margin:0px auto;<br />
text-align:center;<br />
}<br />
<br />
#menue_bg{<br />
width:100&amp;;<br />
height:48px;<br />
background:url(Bilder/Menue_bg.png) repeat-x;<br />
}<br />
#menue {<br />
width:960px;<br />
margin:0px auto;<br />
text-align:center;<br />
}<br />
#menue a {<br />
text-decoration:none;<br />
}<br />
.menue_Button{<br />
float:left;<br />
width:176px;<br />
height:48px;<br />
background:url(Bilder/Menue_sprites.png) no-repeat; <br />
background-position:0px 0px;<br />
cursor:pointer;<br />
}<br />
.menue_Button p {<br />
font-size:20px;<br />
font-family:Calibri;<br />
color:white;<br />
margin:0px;<br />
margin-top:8px;<br />
}<br />
<br />
.menue_Button:hover {<br />
background-position:0px -48px;<br />
}<br />
<br />
#webseite {<br />
width:960;<br />
margin:0px auto;<br />
text-align:center;<br />
}<br />
<br />
#infobox {<br />
width:1000px;<br />
height:845px;<br />
margin:0px auto;<br />
text-align:center;<br />
background:url(Bilder/One-piece_05.png) repeat-x;<br />
}<br />
<br />
#info_text {<br />
float:center;<br />
width:244.5px;<br />
height:207px;<br />
text-align:center;<br />
line-height: 1.5;<br />
}<br />
#info_text h1 {<br />
font-size:20px;<br />
font-family:Calibri;<br />
font-weight:bold;<br />
color:#e7e2e2;<br />
margin:0px;<br />
margin-top:8px;<br />
margin-left:10px;<br />
}<br />
#info_text p {<br />
font-size:16px;<br />
font-family:Calibri;<br />
color:#e7e2e2;<br />
margin:0px;<br />
margin-top:8px;<br />
margin-left:10px;<br />
}<br />
#Footbar {<br />
width:100%;<br />
height:48px;<br />
text-align:center;<br />
margin:0px auto;<br />
}</code><hr />
</div></div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Skindred</dc:creator>
			<guid isPermaLink="true">html-99/text-zentrieren-10951</guid>
		</item>
		<item>
			<title><![CDATA[[F] Tabs]]></title>
			<link>html-99/f-tabs-10500?goto=newpost</link>
			<pubDate>Mon, 09 Apr 2012 00:30:25 GMT</pubDate>
			<description><![CDATA[Hi 
 
ich habe eine Frage, nähmlich, wie kann ich mithilfe von HTML und JavaScript Tabs erstellen? Also so, dass ich z.B. einen "Start"-Tab habe und...]]></description>
			<content:encoded><![CDATA[<div>Hi<br />
<br />
ich habe eine Frage, nähmlich, wie kann ich mithilfe von HTML und JavaScript Tabs erstellen? Also so, dass ich z.B. einen &quot;Start&quot;-Tab habe und von dort aus in einen &quot;Informationen&quot;-Tab wechseln kann, ohne dass sich die Seite neu läd.<br />
<br />
Bin vollkommener Neuling in Sachen HTML. Deshalb suche ich hier Hilfe. :)<br />
<br />
Ich hoffe jmd. kann helfen.</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Pwned</dc:creator>
			<guid isPermaLink="true">html-99/f-tabs-10500</guid>
		</item>
		<item>
			<title><![CDATA[[HTML] Aufgaben Hilfe]]></title>
			<link>html-99/html-aufgaben-hilfe-8875?goto=newpost</link>
			<pubDate>Mon, 12 Mar 2012 14:30:51 GMT</pubDate>
			<description>Moin 
 
 
Ich hätte mal wieder einige Aufgaben zu erledigen, jedoch habe ich leider nicht viel mitbekommen vom Thema, da ich an dem Tag nicht...</description>
			<content:encoded><![CDATA[<div>Moin<br />
<br />
<br />
Ich hätte mal wieder einige Aufgaben zu erledigen, jedoch habe ich leider nicht viel mitbekommen vom Thema, da ich an dem Tag nicht anwesend war..<br />
Da unser Prof. uns alles nur durch Theorie erklärt, wird es etwas schwer für mich die Bsp. alleine zu lösen..<br />
<br />
Ich hoffe, dass die &quot;Profis&quot; unter uns, mir helfen können..<br />
<br />
<br />
1.) Ganzzahlsdivision<br />
<br />
- ganzzahlige Quotient und ganzzahlige Rest einer Division zweier ganzer Zahlen errechnen, ohne DIV-MOR Operator (%)<br />
- Divident: Divisor = Quotient<br />
- Division = wiederholte Subtraktion<br />
- Divisor wird solange vom Dividend subtrahiert, bis Rest kleiner als Divisor ist<br />
- while Rest &gt; = Divisor {Dividend-Divisor}<br />
- Initialisiert wird Rest mit Dividend, Quotient mit Null.<br />
Divisor ungleich Null<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			Eingabe von Dividend, Divisor<br />
if Divisor 0 :<br />
                 - ja --&gt; Abbruch<br />
                 - nein --&gt;  Quotient, Rest initialisieren<br />
                 - Rest &gt; = Divisor<br />
                 - Rest = Rest-Divisor<br />
                   Quotient = Quotient + 1<br />
                 - Ausgabe von Quotient, Rest
			
		<hr />
	</div>
</div>2.) ggT<br />
<br />
- Mit Euklid-Algorithmus größten Teiler zweier Zahlen x &amp; y berechnen<br />
- Mittels ganzzahliger Division von x/y; nur ganzzahl. Rest ist wichtig: x%y<br />
<br />
- Eingabe überprüfen: x,y ungleich 0<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			- Eingabe x, y<br />
- x = = 0<br />
            - Ja --&gt; Fehler: Abbruch<br />
            - Nein --&gt; <br />
- y = = 0<br />
            - Ja --&gt; Fehler: Abbruch<br />
            - Nein --&gt; r = x%y<br />
                          x = y<br />
                          y = r<br />
r &lt; &gt; 0 <br />
--&gt; Ausgabe des ggT
			
		<hr />
	</div>
</div>3.) Römische Ziffern (fast fertig ?!)<br />
- beliebige ganze Dezimalzahl x soll mit röm. Zahlen dargestellt werden<br />
I, V, X, L, C, D, M<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;!doctype html public<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;</span><br />
<span style="color:#000080">&lt;html&gt;</span><span style="color:#000080">&lt;head&gt;</span><br />
<span style="color:#000080">&lt;title&gt;</span>Ratespiel<span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><span style="color:#000080">&lt;body&gt;</span><br />
<span style="color:#800000">&lt;script type=<span style="color:#0000FF">&quot;text/javascript&quot;</span>&gt;</span><i><span style="color:#000080">&lt;!--<br />
var x <br />
var y<br />
<br />
x = prompt (&quot;Bitte geben Sie eine Zahl ein!&quot;)<br />
&nbsp; do {<br />
&nbsp; &nbsp;  x=y;<br />
} while (x &gt;</span>= 1000) {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; (&quot;M&quot;); x = x-1000; }<br />
&nbsp; &nbsp;  if (x &gt;= 500)&nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; (&quot;D&quot;); x = x- 500; }<br />
&nbsp; &nbsp;  while (x &gt;=&nbsp; 100) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; (&quot;C&quot;); x = x- 100; }<br />
&nbsp; &nbsp;  if (x &gt;= 50) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; (&quot;L&quot;); x = x-&nbsp; 50; }<br />
&nbsp; &nbsp;  while (x &gt;=&nbsp;  10) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; (&quot;X&quot;); x = x-&nbsp; 10; }<br />
&nbsp; &nbsp;  if (x &gt;=&nbsp; 5) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; (&quot;V&quot;); x = x-&nbsp;  5; }<br />
&nbsp; &nbsp;  while (x &gt;=&nbsp; &nbsp; 1) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; (&quot;I&quot;); x = x-&nbsp;  1; <br />
}<br />
//--&gt;</i><br />
<span style="color:#800000">&lt;/script&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>4.) Ratespiel (fast fertig)<br />
<br />
-Zahl zwischen 1-100 erraten<br />
-Spieler wird mitgeteilt, ob Tipp zu groß oder zu klein<br />
- while Zufallszahl &lt;&gt; spielertipp<br />
- ob zu groß oder zu klein wird string s geschrieben, der bei n. Tippeingabe ausgegeben wird<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			- Zufallszahl ermitteln<br />
- Spielertipp abfragen<br />
- Tipp &lt; Zahl<br />
                 - Ja --&gt; zu klein<br />
                 - Nein --&gt;<br />
- Tipp &gt; Zahl<br />
                 - Ja --&gt; zu groß<br />
                 - Nein --&gt;<br />
- Tipp ! = Zufallszahl<br />
--&gt; Ausgabe
			
		<hr />
	</div>
</div>Variante 1:<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;!doctype html public<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;</span><br />
<span style="color:#000080">&lt;html&gt;</span><span style="color:#000080">&lt;head&gt;</span><br />
<span style="color:#000080">&lt;title&gt;</span>Ratespiel<span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><span style="color:#000080">&lt;body&gt;</span><br />
<span style="color:#800000">&lt;script type=<span style="color:#0000FF">&quot;text/javascript&quot;</span>&gt;</span><i><span style="color:#000080">&lt;!--<br />
//Zufallszahl<br />
var x = &quot;&quot;;<br />
var j = 1;<br />
x = 100 * Math.random()+1;<br />
x = Math.floor(x);<br />
//Getippte Zahl<br />
var y<br />
while (x != y) {<br />
x = prompt(j + &quot;. Versuch:&quot;);<br />
j++;<br />
}<br />
if (y &lt;x) {<br />
&nbsp; &nbsp; alert (&quot;Ihre Zahl ist zu klein!&quot;);<br />
}&nbsp;  else if (y &gt;</span> x) {<br />
&nbsp; &nbsp; alert (&quot;Ihre Zahl is zu groß!&quot;);<br />
}&nbsp;  else {<br />
}<br />
if ((y &gt;= 1)&amp;&amp;(y <span style="color:#000080">&lt;= 100)) {<br />
&nbsp;  if (y==x) {<br />
&nbsp; &nbsp; &nbsp;  alert (&quot;Glückwunsch! Sie haben die Zahl &quot; + y + &quot;richtig erraten!&quot;);<br />
&nbsp; &nbsp; &nbsp;  document.write (&quot;Glückwunsch! Sie haben die Zahl &quot; + y + &quot;richtig erraten!&quot;);<br />
&nbsp;  } else {<br />
&nbsp; &nbsp;  document.write(&quot;&lt;Sie sind ein Versager!&quot;);<br />
&nbsp; &nbsp;  }&nbsp;  <br />
}<br />
//--&gt;</span></i><br />
<span style="color:#800000">&lt;/script&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>Variante 2:<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;!doctype html public<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;</span><br />
<span style="color:#000080">&lt;html&gt;</span><span style="color:#000080">&lt;head&gt;</span><br />
<span style="color:#000080">&lt;title&gt;</span>Ratespiel<span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><span style="color:#000080">&lt;body&gt;</span><br />
<span style="color:#800000">&lt;script type=<span style="color:#0000FF">&quot;text/javascript&quot;</span>&gt;</span><i><span style="color:#000080">&lt;!--<br />
//Zufallszahl<br />
var x = &quot;&quot;;<br />
var j = 1;<br />
x = 100 * Math.random()+1;<br />
x = Math.floor(x);<br />
//Getippte Zahl<br />
var y<br />
while (x != y) {<br />
x = prompt(j + &quot;. Versuch:&quot;);<br />
j++;<br />
}<br />
if (y &lt;x) {<br />
&nbsp; &nbsp; alert (&quot;Ihre Zahl ist zu klein!&quot;);<br />
}&nbsp;  else if (y &gt;</span> x) {<br />
&nbsp; &nbsp; alert (&quot;Ihre Zahl is zu groß!&quot;);<br />
}&nbsp;  else {<br />
&nbsp; &nbsp; alert (&quot;Glückwunsch! Sie haben die Zahl &quot; + y + &quot;richtig erraten!&quot;);<br />
&nbsp; &nbsp; document.write (&quot;Glückwunsch! Sie haben die Zahl &quot; + y + &quot;richtig erraten!&quot;);<br />
}&nbsp;  <br />
//--&gt;</i><br />
<span style="color:#800000">&lt;/script&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div>Ich kann euch auch bis zu <b><font color="Red">50 Knuddels in .AT</font></b> anbieten (in .DE habe leider nur 3-4 Knuddels zur Verfügung)..<br />
<br />
Brauche die Beispiele heute noch, wenn möglich..<br />
<br />
Vielen Dank!!<br />
<br />
<br />
P.S: Ihr müsst alle Beispiele mit der while; while-do-Schleife lösen (aktuelles Thema)</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Dost</dc:creator>
			<guid isPermaLink="true">html-99/html-aufgaben-hilfe-8875</guid>
		</item>
		<item>
			<title>Facebook - Schreibbox hinzügen.</title>
			<link>html-99/facebook-schreibbox-hinzuegen-8272?goto=newpost</link>
			<pubDate>Thu, 01 Mar 2012 20:09:44 GMT</pubDate>
			<description><![CDATA[Hallo U-Hacks, ich habe in Google, nach dem Schreibbbox gesucht, aber ich werde nicht fündig. 
Kann mir da jemand mit helfen? <3 
 
Lg. :)]]></description>
			<content:encoded><![CDATA[<div>Hallo U-Hacks, ich habe in Google, nach dem Schreibbbox gesucht, aber ich werde nicht fündig.<br />
Kann mir da jemand mit helfen? &lt;3<br />
<br />
Lg. :)</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>JumP-StyLe</dc:creator>
			<guid isPermaLink="true">html-99/facebook-schreibbox-hinzuegen-8272</guid>
		</item>
		<item>
			<title>Facebook Seite gefällt mir Box einrichten.</title>
			<link>html-99/facebook-seite-gefaellt-mir-box-einrichten-8015?goto=newpost</link>
			<pubDate>Sun, 26 Feb 2012 15:11:42 GMT</pubDate>
			<description><![CDATA[Hallo, 
 
ich versuche eine Likebox auf meine Facebookseite einzurichten aber er zeigt immer an bei der Facebook URL: "Das href eingegeben wird nicht...]]></description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
ich versuche eine Likebox auf meine Facebookseite einzurichten aber er zeigt immer an bei der Facebook URL: &quot;Das href eingegeben wird nicht als gültige URL erkannt.&quot;<br />
<br />
hab mich an die Anleitung gehalten: <a href="http://www.bitblokes.de/2010/05/like-box-fur-facebook-seite-page-auf-eigener-hompage-einrichten/" target="_blank" rel="nofollow">» Like-Box für Facebook-Seite (Page) auf eigener Hompage einrichten</a></div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Cannabis</dc:creator>
			<guid isPermaLink="true">html-99/facebook-seite-gefaellt-mir-box-einrichten-8015</guid>
		</item>
		<item>
			<title>Youtube Code einbinden</title>
			<link>html-99/youtube-code-einbinden-7999?goto=newpost</link>
			<pubDate>Sun, 26 Feb 2012 12:42:17 GMT</pubDate>
			<description>Hey, ich war grad dabei, ein Video in Facebook auf meiner Seite zu binden, aber bin jetzt schon leider gescheitert. 
Ich habe die Share-Gate Methode...</description>
			<content:encoded><![CDATA[<div>Hey, ich war grad dabei, ein Video in Facebook auf meiner Seite zu binden, aber bin jetzt schon leider gescheitert.<br />
Ich habe die Share-Gate Methode genommen und als Text, habe ich <div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;object width=<span style="color:#0000FF">&quot;420&quot;</span> height=<span style="color:#0000FF">&quot;315&quot;</span>&gt;</span><span style="color:#000080">&lt;param name=<span style="color:#0000FF">&quot;movie&quot;</span> value=<span style="color:#0000FF">&quot;http://www.youtube.com/v/ZWHpcKXt-qQ?version=3<b><i>&amp;amp;</i></b>hl=de_DE&quot;</span>&gt;</span><span style="color:#000080">&lt;/param&gt;</span><span style="color:#000080">&lt;param name=<span style="color:#0000FF">&quot;allowFullScreen&quot;</span> value=<span style="color:#0000FF">&quot;true&quot;</span>&gt;</span><span style="color:#000080">&lt;/param&gt;</span><span style="color:#000080">&lt;param name=<span style="color:#0000FF">&quot;allowscriptaccess&quot;</span> value=<span style="color:#0000FF">&quot;always&quot;</span>&gt;</span><span style="color:#000080">&lt;/param&gt;</span><span style="color:#000080">&lt;embed src=<span style="color:#0000FF">&quot;http://www.youtube.com/v/ZWHpcKXt-qQ?version=3<b><i>&amp;amp;</i></b>hl=de_DE&quot;</span> type=<span style="color:#0000FF">&quot;application/x-shockwave-flash&quot;</span> width=<span style="color:#0000FF">&quot;420&quot;</span> height=<span style="color:#0000FF">&quot;315&quot;</span> allowscriptaccess=<span style="color:#0000FF">&quot;always&quot;</span> allowfullscreen=<span style="color:#0000FF">&quot;true&quot;</span>&gt;</span><span style="color:#000080">&lt;/embed&gt;</span><span style="color:#000080">&lt;/object&gt;</span></code><hr />
</div>.<br />
<br />
<br />
So mein Problem: Wenn ich da drauf gehe, kommt zwar mein &quot;Teil mich erst dann liken&quot; aber auch mein Video, gleichzeitig.<br />
Ich möchte aber, dass das Video erst dann erscheind, wenn man erst geteilt hat.<br />
<br />
Ich hoffe, ihr könnt mich verstehen.<br />
<br />
<br />
Lg. :)</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>JumP-StyLe</dc:creator>
			<guid isPermaLink="true">html-99/youtube-code-einbinden-7999</guid>
		</item>
		<item>
			<title>Suche jemanden der bei Homepage-Erstellung für Verein mithilft</title>
			<link>html-99/suche-jemanden-der-bei-homepage-erstellung-fuer-verein-mithilft-7936?goto=newpost</link>
			<pubDate>Sat, 25 Feb 2012 18:20:17 GMT</pubDate>
			<description>Hallo User, 
 
ich suche jemanden, der mir bei einer Erstellungen einer Homepage für einen Fußballverein helfen kann. 
Die Homepage sollte möglichst...</description>
			<content:encoded><![CDATA[<div>Hallo User,<br />
<br />
ich suche jemanden, der mir bei einer Erstellungen einer Homepage für einen Fußballverein helfen kann.<br />
Die Homepage sollte möglichst kostenlos sein und die Texte sind auch schon erstellt.<br />
 <br />
Ich habe nur sehr wenig Ahnung davon und wäre echt nett, wenn mir jemand dabei helfen könnte.<br />
<br />
Mit freundlichen Gruß<br />
<br />
Dulgon</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>dulgon</dc:creator>
			<guid isPermaLink="true">html-99/suche-jemanden-der-bei-homepage-erstellung-fuer-verein-mithilft-7936</guid>
		</item>
		<item>
			<title>3 Bilder nebeneinander</title>
			<link>html-99/3-bilder-nebeneinander-5892?goto=newpost</link>
			<pubDate>Sat, 28 Jan 2012 22:31:40 GMT</pubDate>
			<description><![CDATA[Hallo. 
 
Ich habe 3 verschiedene Bilder mit Link, ich möchte die alle 3 nebeneinander haben, wie mache ich das? 
 
<a target="_blank"...]]></description>
			<content:encoded><![CDATA[<div>Hallo.<br />
<br />
Ich habe 3 verschiedene Bilder mit Link, ich möchte die alle 3 nebeneinander haben, wie mache ich das?<br />
<br />
&lt;a target=&quot;_blank&quot; href=&quot;Link1&quot;&gt;&lt;img src=&quot;Bild1&quot; alt=&quot;ein Bild&quot; /&gt;&lt;/a&gt;<br />
<br />
&lt;a target=&quot;_blank&quot; href=&quot;Link2&quot;&gt;&lt;img src=&quot;Bild2&quot; alt=&quot;ein Bild&quot; /&gt;&lt;/a&gt;<br />
<br />
&lt;a target=&quot;_blank&quot; href=&quot;Link3&quot;&gt;&lt;img src=&quot;Bild3&quot; alt=&quot;ein Bild&quot; /&gt;&lt;/a&gt;<br />
<br />
<br />
Link1 bis Link3 wird durch den Link ersetzt<br />
Bild 1 bis Bild3 wird durch das Bild ersetzt<br />
<br />
Ich will die 3 Bilder nebeneinander haben, aber wie?</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>x BoooM x</dc:creator>
			<guid isPermaLink="true">html-99/3-bilder-nebeneinander-5892</guid>
		</item>
		<item>
			<title>HTML Templates?</title>
			<link>html-99/html-templates-5861?goto=newpost</link>
			<pubDate>Sat, 28 Jan 2012 14:58:09 GMT</pubDate>
			<description>Hi. 
 
Weiß einer wo ich gute kostenlose HTML-Templates herbekomme? Also wo man mehrere HTML-Dateien hat und die auf einen FTP-Sever packt und die...</description>
			<content:encoded><![CDATA[<div>Hi.<br />
<br />
Weiß einer wo ich gute kostenlose HTML-Templates herbekomme? Also wo man mehrere HTML-Dateien hat und die auf einen FTP-Sever packt und die Seite dann fertig ist. <br />
<br />
Die HTML-Dateien sollte man alle einzeln bearbeiten können. Design sollte zu Rap bzw. Musik passen.<br />
Kann auch ein schlichtes Design sein also Schwarz oder so, sollte halt wichtige Kategorien habe wie &quot;Kontakt, Downloads, News etc.&quot;<br />
<br />
Noch 1 Frage, wie kann ich eine Facebookseite + Twitter auf eine Seite einbinden? Also 2 Buttons zum anklicken so wie das manche auf ihren Seiten haben.<br />
<br />
Mfg.</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>x BoooM x</dc:creator>
			<guid isPermaLink="true">html-99/html-templates-5861</guid>
		</item>
		<item>
			<title>Warum sieht es so aus?</title>
			<link>html-99/warum-sieht-es-so-aus-5390?goto=newpost</link>
			<pubDate>Sun, 22 Jan 2012 20:19:48 GMT</pubDate>
			<description>Hey U-Hacks. :) 
 
Ich habe da ein Problem, und zwar ich möchte ein Bild (eMail-Bild) mit meiner eMail-Adresse verbinden, d.h. wenn ich auf das Bild...</description>
			<content:encoded><![CDATA[<div>Hey U-Hacks. :)<br />
<br />
Ich habe da ein Problem, und zwar ich möchte ein Bild (eMail-Bild) mit meiner eMail-Adresse verbinden, d.h. wenn ich auf das Bild klicke, öffnet sich ein Progamm, wo meine eMail-Adresse schon drine steht.<br />
Seitdem ich das gemacht habe, sieht da nun auch so &quot;weisse&quot; Flächen zu sehen.<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
				&lt;tr&gt;<br />
		&lt;td colspan=&quot;6&quot; rowspan=&quot;2&quot;&gt;<br />
			&lt;img src=&quot;Bilder/fportfolio_05.gif&quot; width=&quot;137&quot; height=&quot;63&quot; alt=&quot;&quot;&gt;&lt;/td&gt;<br />
		&lt;td&gt;<br />
			<b>&lt;a href=&quot;mailto:Blabla@web.de&quot;&lt;/a&gt;</b><br />
			&lt;img src=&quot;Bilder/fportfolio_06.jpg&quot; width=&quot;37&quot; height=&quot;25&quot; alt=&quot;&quot;&gt;&lt;/td&gt;<br />
		&lt;td rowspan=&quot;2&quot;&gt;<br />
			&lt;img src=&quot;Bilder/fportfolio_07.gif&quot; width=&quot;8&quot; height=&quot;63&quot; alt=&quot;&quot;&gt;&lt;/td&gt;<br />
		&lt;td colspan=&quot;2&quot;&gt;<br />
			&lt;img src=&quot;Bilder/fportfolio_08.jpg&quot; width=&quot;29&quot; height=&quot;25&quot; alt=&quot;&quot;&gt;&lt;/td&gt;<br />
		&lt;td rowspan=&quot;14&quot;&gt;<br />
			&lt;img src=&quot;Bilder/fportfolio_09.gif&quot; width=&quot;157&quot; height=&quot;670&quot; alt=&quot;&quot;&gt;&lt;/td&gt;<br />
	&lt;/tr&gt;
			
		<hr />
	</div>
</div>Das dicke habe ich NEU hinzugefügt.<br />
Link zu meiner &quot;Page&quot;<a href="http://fabrizioragazzo.fa.funpic.de/fportfolio.html" target="_blank" rel="nofollow">Fabrizio Portfolio</a><br />
<br />
Ich hoffe, es ist verständlich was ich damit meine. :)<br />
<br />
LG. :)</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>JumP-StyLe</dc:creator>
			<guid isPermaLink="true">html-99/warum-sieht-es-so-aus-5390</guid>
		</item>
		<item>
			<title>HTML anfangen zu Lernen.</title>
			<link>html-99/html-anfangen-zu-lernen-5206?goto=newpost</link>
			<pubDate>Fri, 20 Jan 2012 17:39:49 GMT</pubDate>
			<description><![CDATA[Schönen guten Abend. :D 
Ich wollte mal anfangen HTML zu lernen. 
Was könnt ihr mir Vorschlagen, womit ich es ab "besten/schnellsten" verstehe? 
Also...]]></description>
			<content:encoded><![CDATA[<div>Schönen guten Abend. :D<br />
Ich wollte mal anfangen HTML zu lernen.<br />
Was könnt ihr mir Vorschlagen, womit ich es ab &quot;besten/schnellsten&quot; verstehe?<br />
Also ich will es eigentlich nur um &quot;Webseiten&quot; zu Coden. :)<br />
Lg. :)</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>JumP-StyLe</dc:creator>
			<guid isPermaLink="true">html-99/html-anfangen-zu-lernen-5206</guid>
		</item>
		<item>
			<title><![CDATA[[HTML] Aufgaben erledigen [B] Knuddels]]></title>
			<link>html-99/html-aufgaben-erledigen-b-knuddels-4947?goto=newpost</link>
			<pubDate>Mon, 16 Jan 2012 14:16:52 GMT</pubDate>
			<description>Tag allerseits! 
 
Ich habe einige HTML-Aufgaben bis morgen zu erledigen und habe leider keine Zeit, da ich morgen noch eine Schularbeit+Prüfung habe...</description>
			<content:encoded><![CDATA[<div>Tag allerseits!<br />
<br />
Ich habe einige HTML-Aufgaben bis morgen zu erledigen und habe leider keine Zeit, da ich morgen noch eine Schularbeit+Prüfung habe und dafür lernen muss...<br />
<br />
Da ich noch ein Anfänger bin und ich viel länger brauchen würden für die Aufgaben, da mich damit außereinander setzen müsste, bitte ich euch die Aufgaben für mich zu erledigen..<br />
<br />
Die Aufgaben dauern für die Könner unter euch nicht lang..<br />
Ihr müsst FOR-Schleifen benutzen (aktuelles Thema)<br />
<br />
Die Aufgaben lauten:<br />
<br />
1.) Alphabet in Zeichenkette in Blockbuchstaben<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;!doctype html public<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;</span><br />
<span style="color:#000080">&lt;html&gt;</span><span style="color:#000080">&lt;head&gt;</span><br />
<span style="color:#000080">&lt;title&gt;</span>Alphabet <span style="color:#000080">&lt;/title&gt;</span><br />
<span style="color:#000080">&lt;/head&gt;</span><span style="color:#000080">&lt;body&gt;</span><br />
<span style="color:#800000">&lt;script type=<span style="color:#0000FF">&quot;text/javascript&quot;</span>&gt;</span><i><span style="color:#000080">&lt;!--<br />
for (var i=1; i&lt;=26; i++) {<br />
&nbsp; &nbsp; document.write (String.fromCharCode(65))<br />
}<br />
//--&gt;</span></i><br />
<span style="color:#800000">&lt;/script&gt;</span><br />
<span style="color:#000080">&lt;/body&gt;</span><br />
<span style="color:#000080">&lt;/html&gt;</span></code><hr />
</div><b><font color="Red">Preis: 5 Knuddels</font></b> (Ihr müsst nur den Fehler ausbessern, habe mit dem Bsp schon angefangen)<br />
<br />
2.) Faktorielle berechnen<br />
Berechne n! wobei gilt: n! = 1*2*3...*n-1*n<br />
FOR-Schleife<br />
var x = 1<br />
for (var i=2;i&lt;=n;i++)x=x-1<br />
Eingabe prüfen<br />
Eingabefehler wenn n&lt;0<br />
<br />
<font color="Red"><b>Preis: 10 Knuddels</b></font><br />
<br />
3.)Schriftgrößen von 10 bis 26 Pixel<br />
Schrittweite 2, d.h. Schriftgröße 10,12,14,16...<br />
Ausgabe mit &lt;span&gt;-Tag:<br />
&lt;span style=&quot;font-size:10 px&quot;&gt;..&lt;/span&gt;<br />
<br />
Ergebnis<br />
for(var i=10;i&lt;26,i+=2) {}<br />
<br />
write ('&lt;span style= &quot;font-size:' +i ' px&quot;&gt;...&lt;/span'&gt;<br />
<br />
<font color="Red"><b>Preis: 10 Knuddels</b></font><br />
<br />
4.)Sternchendreicke<br />
3 FOR-Schleifen<br />
for (vari=1; i&lt;=n;i++){<br />
      for (var j=1;j&lt;n=n-1;j++) {<br />
}<br />
for (j=1;j&lt;=(2*i)-1;j++){<br />
}<br />
<font color="Red"><b><br />
Preis: 15 Knuddels</b></font><br />
<br />
Vielen Dank!<br />
<br />
mfg, Dost<br />
<br />
/e: Aufgaben 1,3 gelöst von DeKaDeNz</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Dost</dc:creator>
			<guid isPermaLink="true">html-99/html-aufgaben-erledigen-b-knuddels-4947</guid>
		</item>
		<item>
			<title><![CDATA[[HTML] Webdesign - Feedback erwünscht]]></title>
			<link>html-99/html-webdesign-feedback-erwuenscht-4811?goto=newpost</link>
			<pubDate>Fri, 13 Jan 2012 20:03:07 GMT</pubDate>
			<description><![CDATA[Hi, 
für meinen (bzw. unseren, Nico's und meinen :D) Uploader habe ich soeben ein Design erstellt. Es ist gewollt an Google's angelehnt da es einfach...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
für meinen (bzw. unseren, Nico's und meinen :D) Uploader habe ich soeben ein Design erstellt. Es ist gewollt an Google's angelehnt da es einfach sehr gut an das heutige Web 2.0 angepasst ist. Hier eine Vorschau:<br />
<br />
<a style="font-weight:bold;text-decoration:none;" target="blank" href="http://i40.tinypic.com/kehu2v.png"><img  style="vertical-align:text-bottom;" src="https://u-img.net/img/2542Da.png"> BILD ANZEIGEN </a> <a style="font-size:10px;text-decoration:none;" href="http://u-hacks.net/news-und-ankuendigungen-4/erlaubte-imagehoster-17046/" target="blank"> [Warum wird das Bild nicht angezeigt?]</a><br />
<br />
Die Leiste ist nicht gewollt - wurde aber wo ich übern Link gekommen bin von Opera geadded, müsst ihr euch wegdenken :) Feedback und vor allem VERBESSERUNGSVORSCHLÄGE wären erwünscht!</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Comu</dc:creator>
			<guid isPermaLink="true">html-99/html-webdesign-feedback-erwuenscht-4811</guid>
		</item>
		<item>
			<title>(S) Hompage Coder/Designer (B) PSC</title>
			<link>html-99/s-hompage-coder-designer-b-psc-3145?goto=newpost</link>
			<pubDate>Thu, 15 Dec 2011 17:52:46 GMT</pubDate>
			<description>Hallo wer interesse fuer den Job hat kann sich bei mir melden 
 
Biete bis zu 25 Euro PSC 
Weiteres ueber Skype/MSN</description>
			<content:encoded><![CDATA[<div>Hallo wer interesse fuer den Job hat kann sich bei mir melden<br />
<br />
Biete bis zu 25 Euro PSC<br />
Weiteres ueber Skype/MSN</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>St0nY</dc:creator>
			<guid isPermaLink="true">html-99/s-hompage-coder-designer-b-psc-3145</guid>
		</item>
		<item>
			<title><![CDATA[[HTML] Eincash-System]]></title>
			<link>html-99/html-eincash-system-2646?goto=newpost</link>
			<pubDate>Sun, 11 Dec 2011 12:05:13 GMT</pubDate>
			<description>Heyho, hat wer nen HTML-Code für ein Eincash-System sprich paysafecard code eingeben , verschickt an meine email, etc.</description>
			<content:encoded><![CDATA[<div>Heyho, hat wer nen HTML-Code für ein Eincash-System sprich paysafecard code eingeben , verschickt an meine email, etc.</div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Prince</dc:creator>
			<guid isPermaLink="true">html-99/html-eincash-system-2646</guid>
		</item>
		<item>
			<title><![CDATA[[Video-Tut] HTML lernen]]></title>
			<link>html-99/video-tut-html-lernen-291?goto=newpost</link>
			<pubDate>Sat, 19 Nov 2011 12:30:19 GMT</pubDate>
			<description>Hier mal mein Youtube Tutorial, welches für Anfänger geeignet ist.  
Es basiert auf eigenen Kentnissen und man kann daher nie 100% sicher gehen das...</description>
			<content:encoded><![CDATA[<div>Hier mal mein Youtube Tutorial, welches für Anfänger geeignet ist. <br />
Es basiert auf eigenen Kentnissen und man kann daher nie 100% sicher gehen das es komplett richtig ist, besser als das was in der Schule beigebracht wird aber aufjedenfall. <br />
Ich achte dabei auch nicht immer zwingen auf Fachausdrücke, sondern versuche es verständlich rüberzubringen.<br />
<br />
<object width="640" height="360"><param name="movie" value="//www.youtube.com/v/L_8gJXsb-TQ"></param><embed src="//www.youtube.com/v/L_8gJXsb-TQ" type="application/x-shockwave-flash" width="640" height="360"></embed></object><br />
<object width="640" height="360"><param name="movie" value="//www.youtube.com/v/o6W4gON3dio"></param><embed src="//www.youtube.com/v/o6W4gON3dio" type="application/x-shockwave-flash" width="640" height="360"></embed></object><br />
<object width="640" height="360"><param name="movie" value="//www.youtube.com/v/Ej5fLESg4Ww"></param><embed src="//www.youtube.com/v/Ej5fLESg4Ww" type="application/x-shockwave-flash" width="640" height="360"></embed></object><br />
<object width="640" height="360"><param name="movie" value="//www.youtube.com/v/lRrhLo7uHr4"></param><embed src="//www.youtube.com/v/lRrhLo7uHr4" type="application/x-shockwave-flash" width="640" height="360"></embed></object><br />
<object width="640" height="360"><param name="movie" value="//www.youtube.com/v/eWpdbWcFj2w"></param><embed src="//www.youtube.com/v/eWpdbWcFj2w" type="application/x-shockwave-flash" width="640" height="360"></embed></object><br />
<object width="640" height="360"><param name="movie" value="//www.youtube.com/v/LmocFsfZs1k"></param><embed src="//www.youtube.com/v/LmocFsfZs1k" type="application/x-shockwave-flash" width="640" height="360"></embed></object><br />
<object width="640" height="360"><param name="movie" value="//www.youtube.com/v/FATib7RAeHE"></param><embed src="//www.youtube.com/v/FATib7RAeHE" type="application/x-shockwave-flash" width="640" height="360"></embed></object></div>

]]></content:encoded>
			<category domain="html-99">HTML</category>
			<dc:creator>Comu</dc:creator>
			<guid isPermaLink="true">html-99/video-tut-html-lernen-291</guid>
		</item>
	</channel>
</rss>
