Hallo Dennis
Also, ich hab da noch was schöneres gefunden...
Sicher? <g>
Hier noch mal meine "Direktschreibfassung" - keine 400 Bytes bei ordentlicher Formatierung, also pro Farbe ca. nicht viel mehr als 1,8 Byte Speicherverbrauch:
<html><head></head><body>
<script language="javascript">
t="";
c=new Array("00","33","66","99","CC","FF");
for(i=0;i<6;i++)
{
t+="<table width=100%>";
for(j=0;j<6;j++)
{
t+="<tr>";
for(k=0;k<6;k++)
{
L=c[i]+c[j]+c[k];
t+="<td bgcolor="+L+">"+L;
}
t+="</tr>";
}
t+="</table>";
};
with(document)
{
write(t);
void(close());
}
</script>
</body></html>
viele Gruesse
Stefan Muenz