<html> <head> <title>CSS Color Chart</title> <meta name="description" content=""> <meta name="keywords" content=""> <style type="text/css"> body {background-color: rgb(60%,60%,60%); color: rgb(0%,0%,0%);} h1, h2 {color: rgb(80%80%80%)} th {background-color: rgb(65%65%65%)} </style> </head> <body> <div align="center"> <h1>"Browser-Safe" Color Mixing Chart</h1>
<h2>Gray Scale</h2> <table> <tr> <th>0% Red, Green, Blue</th> <th>20% Red, Green, Blue</th> <th>40% Red, Green, Blue</th> <th>60% Red, Green, Blue</th> <th>80% Red, Green, Blue</th> <th>100% Red, Green, Blue</th> </tr>
<tr><!-- Row 1 --> <td style="background-color: rgb(0%0%0%)">?/td> <!-- Col 1 --> <td style="background-color: rgb(20%20%20%)">?/td> <!-- Col 2 --> <td style="background-color: rgb(40%40%40%)">?/td> <!-- Col 3 --> <td style="background-color: rgb(60%60%60%)">?/td> <!-- Col 4 --> <td style="background-color: rgb(80%80%80%)">?/td> <!-- Col 5 --> <td style="background-color: rgb(100%100%100%)">?/td> <!-- Col 6 --> </tr> </table>
<br>
</div> </body> </html>
|