diff --git a/snake.html b/snake.html
index 7ed2057..cf243fe 100644
--- a/snake.html
+++ b/snake.html
@@ -1,4 +1,4 @@
-i
+
snake game
@@ -101,7 +101,7 @@
context.fillRect(apple.x, apple.y, grid-1, grid-1);
// draw snake one cell at a time
- context.fillStyle = 'white';
+ context.fillStyle = 'blue';
snake.cells.forEach(function(cell, index) {
// drawing 1 px smaller than the grid creates a grid effect in the snake body so you can see how long it is