1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1"> 6 <title>Battles in Kallisor</title> 7 <link href="kallisor.css" rel="stylesheet" type="text/css"> 8 </head> 9 <body> 10 <div id="interface"> 11 <h1>Battles in Kallisor</h1> 12 <div id="text"></div> 13 <div id="foe"> 14 <img id="foe-image" src="" alt="foe"> 15 </div> 16 <div id="foe-info"></div> 17 <div id="stats"></div> 18 <div id="fight" class="button-div">Fight</div> 19 <div id="herb" class="button-div">Herb</div> 20 <div id="defend" class="button-div">Defend</div> 21 <div id="run" class="button-div">Run</div> 22 <div id="ok">OK</div> 23 </div> 24 <script src="kallisor.js"></script> 25 </body> 26 </html>