Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="author" content="Jacob Howard">
- <meta name="description" content="A small demonstration of a hex-color table.">
- <meta name="keywords" content="color, html, colorwheel, hexadecimal, milwee">
- <link rel="shortcut icon" type="image/png" href="img\favicons\redhex.png">
- <link rel="stylesheet" type="text/css" href="css\5.6_hextable.css">
- <title>Red Hex Color Table</title>
- </head>
- <body>
- <center>
- <div style="width:100%; height:100px;">
- <h1>Red Hexadecimal Color Table</h1>
- </div>
- <br>
- <!-- The thin outline to all of the color cells. -->
- <table border="1">
- <tr>
- <!-- The actual box where the color is displayed. -->
- <td id="box1" style="background-color:#FF0000;">
- <!-- The hyperlink that shows the hexidecimal code that, when clicked on, redirects the user to the color on hailpixel. -->
- <p><a target="blank" href="http://color.hailpixel.com/#FF0000,"><button>#FF0000</button></a></p>
- </td>
- <td id="box2" style="background-color:#C80000;">
- <p><a target="blank" href="http://color.hailpixel.com/#C80000,"><button>#C80000</button></a></p>
- </td>
- <td id="box3" style="background-color:#960000;">
- <p><a target="blank" href="http://color.hailpixel.com/#960000,"><button>#960000</button></a></p>
- </td>
- <td id="box4" style="background-color:#640000;">
- <p><a target="blank" href="http://color.hailpixel.com/#640000,"><button>#640000</button></a></p>
- </td>
- <td id="box5" style="background-color:#320000;">
- <p><a target="blank" href="http://color.hailpixel.com/#320000,"><button>#320000</button></a></p>
- </td>
- </tr>
- </table>
- </center>
- </body>
- </html>
Advertisement