diff options
| author | Li Zhineng <[email protected]> | 2013-06-07 17:44:47 +0800 |
|---|---|---|
| committer | Li Zhineng <[email protected]> | 2013-06-07 17:44:47 +0800 |
| commit | c080e07ee1a0004d732508f9ed011678a38eda5e (patch) | |
| tree | 056707266c62dca43ba90de7148c8722628c3d16 /index.html | |
| parent | cf75ddf153d4fbddd9ae8a517a9c6121e995972b (diff) | |
| download | word-search-game-c080e07ee1a0004d732508f9ed011678a38eda5e.tar.gz word-search-game-c080e07ee1a0004d732508f9ed011678a38eda5e.zip | |
First commit
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..aefb2d6 --- /dev/null +++ b/index.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Word search game</title> + <link rel="stylesheet" href="css/style.css" /> + </head> + <body> + <div class="wrap"> + <h1>Word search game</h1> + <section id="gameArea"></section> + </div> + <script src="js/utility.js"></script> + <script src="js/wordsearch.js"></script> + <script type="text/javascript"> + var gameAreaEl = document.getElementById('gameArea'); + gameAreaEl.wordSeach({ + 'gridSize': 10, + 'words': ['apple'] + }); + </script> + </body> +</html>
\ No newline at end of file |
