Cristiano Magro
2024-12-27 5529c72570323d88366d8119f353ba60131a3eb2
commit | author | age
14370b 1 <!DOCTYPE html>
CM 2 <html lang="en">
3   <head>
4     <meta charset="UTF-8" />
5     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6     <title>Vue Basics</title>
7     <link
8       href="https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap"
9       rel="stylesheet"
10     />
11     <link rel="stylesheet" href="styles.css" />
4a01d9 12     <script src="https://unpkg.com/vue@3.4.9/dist/vue.global.js"></script>
14370b 13     <script src="app.js" defer></script>
CM 14   </head>
15   <body>
16     <header>
17       <h1>Monster Slayer</h1>
18     </header>
19     <div id="game">
20       <section id="monster" class="container">
21         <h2>Monster Health</h2>
22         <div class="healthbar">
5529c7 23           <div class="healthbar__value" :style="monsterBarStyle"></div>
14370b 24         </div>
CM 25       </section>
26       <section id="player" class="container">
27         <h2>Your Health</h2>
28         <div class="healthbar">
5529c7 29           <div class="healthbar__value" :style="playerBarStyle"></div>
14370b 30         </div>
CM 31       </section>
32       <section id="controls">
8c672a 33         <button @click="attackMonster">ATTACK</button>
5529c7 34         <button @click="specialAttackMonster" :disabled="mayUseSpecialAttack">
CM 35           SPECIAL ATTACK
36         </button>
14370b 37         <button>HEAL</button>
CM 38         <button>SURRENDER</button>
39       </section>
40       <section id="log" class="container">
41         <h2>Battle Log</h2>
42         <ul></ul>
43       </section>
44     </div>
45   </body>
46 </html>