This text was created by HTML.
<script language="JavaScript"> var bonus=0, grade; grade = parseInt(window.prompt("Enter your score","75")); if (grade > 98) { bonus = bonus + 1; document.write("Excellent job<br>"); window.alert("Keep up the good work"); } document.write("Your current bonus is " + bonus); </script>