Roll 2 Dice
It's Fun to Learn by Actually Making Something !
Get Mister iCan's Roll the Dice
Make a simple app to roll 2 dice. You need to use HTML and Javascript to create a web page that you will use as the interactive portion of your Chrome App. The HTML will have a "roll" button and locations by ID for placing results from the script.
Script for html header to place an image:
<script type="text/javascript">
function insert1()
{
var src = document.getElementById("dice1image");
var img = document.createElement("img");
img.src = "dice1.png";
src.appendChild(img);
}
</script>
document.getElementById("dice1image").innerHTML = "";