12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>Burger</title>
- <style type="text/css">
- .good-answer {
- color:green;
- }
- .wrong-answer {
- color:red;
- }
- </style>
- </head>
-
- <body>
- <h1>Burger temps réel !</h1>
-
- <div id="game">
- Connexion au serveur...
- </div>
-
- <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
- <script src="http://localhost:8000/socket.io/socket.io.js"></script>
- <script src="js/game.js"></script>
- <script>
- init();
-
- </script>
- </body>
- </html>
|