<html> <head> <title>Roll Em!</title> </head> <body> <h1>Roll Em!</h1> <h3>Demonstrates rolling a die</h3> <? $roll = rand(1,6); print "You rolled a $roll"; print "<br>"; print "<img src = die$roll.jpg>"; ?> <br> Refresh this page in the browser to roll another die. </body> </html>