HTMLify
index.html
Views: 8 | Author: boldbug
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Power Reflection</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <h1>Power Reflection</h1> <input id="powerInput" type="text" placeholder="Enter your power..." /> <button id="generateBtn">Reflect</button> <p id="output"></p> </div> <script src="script.js"></script> </body> </html> |