Skip to content

Instantly share code, notes, and snippets.

@sirdarthvader
Created June 10, 2018 21:44
Show Gist options
  • Save sirdarthvader/4e19af1a2b2d312e4ec444c14ddbd00c to your computer and use it in GitHub Desktop.
Save sirdarthvader/4e19af1a2b2d312e4ec444c14ddbd00c to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Color Game</title>
<link rel="stylesheet" type="text/css" href="app.css">
</head>
<body>
<h1>
The Great
<br>
<span id="colorDisplay">RGB</span>
<br>
Color Game
</h1>
<div id="stripe">
<button id="reset">New Colors</button>
<span id="message"></span>
<button class="mode">Easy</button>
<button class="mode selected">Hard</button>
</div>
<div id="container">
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
</div>
<script type="text/javascript" src="app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment