mirror of
https://github.com/wassname/Clover-Edition.git
synced 2026-09-20 12:20:53 +08:00
24 lines
736 B
HTML
24 lines
736 B
HTML
|
|
<html>
|
|
<head>
|
|
<title>Dungeon</title>
|
|
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="static/style.css">
|
|
</head>
|
|
<div class="topnav">
|
|
<a href="about.html">About</a>
|
|
<a href="http://patreon.com/AIDungeon">Support</a>
|
|
</div>
|
|
<body>
|
|
<script type="text/javascript" src="static/script.js">
|
|
</script>
|
|
<div id="console"></div>
|
|
</body>
|
|
<div id="buttons">
|
|
<button onclick="onButtonClick(0)">0</button>
|
|
<button onclick="onButtonClick(1)">1</button>
|
|
<button onclick="onButtonClick(2)">2</button>
|
|
<button onclick="onButtonClick(3)">3</button>
|
|
</div>
|
|
</html>
|