skip to Main Content

Ubuntu – How can I return something from JavaScript to HTML?

<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="styles.css" /> <script src="styles.js"></script> <title>Dice Roller</title> </head> <body> <h1>Dice Roller</h1> <p>Can't decide on what to eat? Or what to do? Our dice roller is perfect for this.</p> <section> <button class="roll-button" type="button" onclick="rollDice()">Roll</button> <h1> <script…

VIEW QUESTION
Back To Top
Search