From f15714d7dd9d6836faeb328038108001ab3ab1d0 Mon Sep 17 00:00:00 2001 From: mathdude314 Date: Fri, 13 Feb 2015 21:15:29 -0500 Subject: [PATCH] Create colorOfWordTutorial.md Tutorial for What Is The Color Of The Word game --- colorOfWordTutorial.md | 54 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 colorOfWordTutorial.md diff --git a/colorOfWordTutorial.md b/colorOfWordTutorial.md new file mode 100644 index 0000000..be90396 --- /dev/null +++ b/colorOfWordTutorial.md @@ -0,0 +1,54 @@ +

Tutorial for coding game What is the Color of the Word?

+ +In case you haven't seen the game, here's how to play: You're given a word. It's a color word, and the color the word is written in is different from what the word means. For example, you might see "Red" in blue letters. +The goal is to score points by guessing the color it's written in. + +Let's start with the basic HTML framework: +```html + + + + + + + + + + + +``` + +Now we can begin. +Let's first create the box that defines the game. The rest is background: +```html + +
+ +
+ +``` + +Of course, this will do nothing if we don't have proper stylesheets. Let's make the background color `#dddda0` (a dull yellow) and the game window 300x300 (definitely enough). +```html + +``` + + + +

***** This tutorial is unfinished *****