Created
June 29, 2014 08:01
-
-
Save grant/9ac8a91d8f384672497b to your computer and use it in GitHub Desktop.
Rainbow 🌈
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<style> | |
div { | |
width: 40px; | |
height: 10px; | |
display: inline-block; | |
padding: 0; | |
margin: 0; | |
border: 0; | |
} | |
</style> | |
</head> | |
<body> | |
<div style="background-color:rgb(255, 0, 0)" ></div><div style="background-color:rgb(255, 128, 0)" ></div><div style="background-color:rgb(255, 255, 0)" ></div><div style="background-color:rgb(128, 255, 0)" ></div><div style="background-color:rgb(0, 255, 0)" ></div><div style="background-color:rgb(0, 255, 128)" ></div><div style="background-color:rgb(0, 255, 255)" ></div><div style="background-color:rgb(0, 127, 255)" ></div><div style="background-color:rgb(0, 0, 255)" ></div><div style="background-color:rgb(128, 0, 255)" ></div><div style="background-color:rgb(255, 0, 255)" ></div><div style="background-color:rgb(255, 0, 128)" ></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment