Skip to content

Instantly share code, notes, and snippets.

@grant
Created June 29, 2014 08:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grant/9ac8a91d8f384672497b to your computer and use it in GitHub Desktop.
Save grant/9ac8a91d8f384672497b to your computer and use it in GitHub Desktop.
Rainbow 🌈
<!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