Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Stroll</title>
- <link rel="stylesheet" href="style.css">
- <script src="recursive-macro.js"></script>
- <script src="game.js"></script>
- </head>
- <body>
- <div id=game-area>
- <div id=log>
- It's a nice day for a walk.
- </div>
- <button onclick="grow()">Get Bigger</button>
- <button onclick="feed()">Eat</button>
- <button onclick="stomp()">Stomp</button>
- <button onclick="anal_vore()">Sit</button>
- <div></div>
- <button onclick="toggle_auto()">Stroll</button>
-
- <p>Stats</p>
- <div id=height></div>
- <div id=mass></div>
- <div class=stat-header id=stats-stomped>
- <p>Stomped</p>
- </div>
- <div class=stat-header id=stats-digested>
- <p>Digested</p>
- </div>
- <div class=stat-header id=stats-stomach>
- <p>Stomach</p>
- </div>
- <div class=stat-header id=stats-bowels>
- <p>Bowels</p>
- </div>
- </div>
- </body>
- </html>
|