Advertisement
5_2007-2008 Miscellaneous #181539

Awsome Color Sheet!

Makes a cool color sheet for using on the making of webpages

AI

KI-Zusammenfassung: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Quellcode
original-source
<html>
<head>
<title>
color sheet
</title>
</head>
<body bgcolor="black">
<center>
<table cellspacing=0>
<script language="javascript">
<!-- This was wrote by kc. If you use this please email me :)-->
var colors= new Array()
colors[0]="FF"
colors[1]="CC"
colors[2]="99"
colors[3]="66"
colors[4]="33"
colors[5]="00"
for (var x=0;x<=5;x=x+1)
 {
 document.write("<tr>")
 for (var y=0;y<=5;y=y+1)
  {
   for (var z=0;z<=5;z=z+1)
   {
   var c=""
   c="#"+colors[x]+""+colors[y]+""+colors[z]+""
   document.write("<td bgcolor=\""+c+"\">"+c+"</td>")
   }
 document.write("</tr>")
  }
}
</script>
</table>
</body>
</html>
Originalkommentare (3)
Wiederhergestellt von der Wayback Machine