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 *****