File: demos/snake/index.html

Recommend this page to a friend!
  Classes of Fernando Henrique Correa   FW JavaScript Game Engine   demos/snake/index.html   Download  
File: demos/snake/index.html
Role: Example script
Content type: text/plain
Description: Documentation
Class: FW JavaScript Game Engine
Manage games based on HTML5 and canvas
Author: By
Last change: Add start Files
Date: 2 years ago
Size: 953 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" lang="pt-br" xml:lang="pt-BR" dir="ltr"> <head> <title>Snake - JavaScript</title> <meta charset="UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="robots" content="index,follow"> <meta name="description" content="Snake Game JavaScript"> <meta name="keywords" content="Jogo, Game, Snake, Cobra"> <script type="application/javascript" src="js/fwg/game.js"></script> <script type="application/javascript" src="js/actor/background.js"></script> <script type="application/javascript" src="js/actor/snake.js"></script> <script type="application/javascript" src="js/actor/food.js"></script> <script type="application/javascript" src="js/actor/score.js"></script> </head> <body id="gameAreaId" onload="javascript:game.run('gameAreaId');"> </body> </html>