README.md
December 4, 2022 ยท View on GitHub
Description
Makes a cool color sheet for using on the making of webpages
More Info
| Submitted On | |
| By | theMayor |
| Level | Beginner |
| User Rating | 5.0 (10 globes from 2 users) |
| Compatibility | |
| Category | Miscellaneous |
| World | Java |
| Archive File |
Source Code
<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>