summaryrefslogtreecommitdiff
path: root/index.html
blob: 446872f7e5bf6bca82e28240d2260d22fe0784bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!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 class="logo">Word search game</h1>
      <section id="ws-area" class="fix"></section>
    </div>
    <a href="https://github.com/lizhineng/word-search-game"><img style="position: absolute; top: 0; right: 0; border: 0;" src="images/forkme_right_red.png" alt="Fork me on GitHub"></a>
    <script src="js/utility.js"></script>
    <script src="js/wordsearch.js"></script>
    <script type="text/javascript">
      var gameAreaEl = document.getElementById('ws-area');
      gameAreaEl.wordSeach({
        'gridSize': 10,
        'words': ['one', 'two', 'three', 'four', 'five']
      });
    </script>
  </body>
</html>