HTML


Allgemein


SelfHTML
http://de.selfhtml.org/

Table
http://de.selfhtml.org/html/tabellen/gestaltung.htm

W3C
http://www.w3schools.com/default.asp
http://www.w3schools.com/css/css_syntax.asp
http://www.w3schools.com/tags/tag_input.asp

Verwandte Themen

HTML colors
https://html-color-codes.com/

Mathematische Sonderzeichen in HTML

Sonderzeichen
http://www.mediaevent.de/tutorial/sonderzeichen.html


Die wichtigsten Konstrukte in HTML zum Kopieren und Einfügen


Meta-Tags


How much time schould I spend on meta tags?
http://support.google.com/webmasters/bin/answer.py?hl=de&answer=79812

<META NAME="GOOGLEBOT" CONTENT="NOARCHIVE">
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">


Grundgerüst

<HTML>
<HEAD>
<TITLE>Titel</TITLE>
</HEAD>
<BODY>


</BODY>
</HTML>


Links

<A href="" ></A>
<A href="" target="_blank"></A>

<A name="absatz1" />
<A href="#absatz1" ></A>


Tabelle

<table border="1" cellspacing="0" cellpadding="2">
    <tr>
        <td> links oben </td>
        <td> rechts oben </td>
    </tr>
    <tr>
        <td> links unten </td>
        <td> rechts unten </td>
    </tr>
</table>


Cascaded Style Sheets


Externe CSS-Dateien einbinden
<link rel="stylesheet" href="elektronik.css" type="text/css">


Stichpunkte

<ul>
    <li></li>
    <li></li>
</ul>

<ul>
    <li>Oberpunkt 1
        <ul>
            <li></li>
            <li></li>
        </ul>
    </li>
    <li>Oberpunkt 2
        <ul>
            <li></li>
            <li></li>
        </ul>

    </li>
</ul>


Sonderzeichen


Sonderzeichen des westeuropäischen und amerikanischen Raums nach ISO-8859-1 (Latin-1).

Ä ä &Auml; &auml;
Ö ö &Ouml; &ouml;
Ü ü &Uuml; &uuml;
ß   &szlig;
"   &quot;
&  &amp;
<  &lt;
>  &gt;
© &copy;
€  &euro;
% &#37;



Java-Script

<script language="JavaScript"><!--
     if(top.frames.length > 0)
     top.location.href="http://www.asamnet.de/~tobolaan";
//-->
</script>


Frames

<frameset framespacing="0" border="false" frameborder="0" cols="143,864*" rows="*">
  <frame name="Left" target="Main" scrolling="no" marginwidth="0" marginheight="0" src="left.htm" noresize/>
  <frame name="Main" scrolling="auto" src="main.htm"/>
  <noframes>
  <body>
  <p>Your browser does not support frames.</p>
  </body>
  </noframes>
</frameset>





Siehe auch
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki