Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

2T Valerie Lee RCG Part 3

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
<script>
var urname = prompt("Enter your name:");
var urclass = prompt("Enter your class");
var urindex = prompt("Enter your index number");

var urengmrk = prompt("Enter your English marks:");
var urmtmrk = prompt("Enter your Mother Tongue marks:");
var urscimrk = prompt("Enter your Science marks:");
var urmathmrk = prompt("Enter your Mathematics marks:");
var urtotalmrk = Number(urengmrk) + Number(urmtmrk) + Number(urscimrk) + Number(urmathmrk)

document.write("===Report Card=== <br>");
document.write("Name: " + urname + "<br>")
document.write("Class: " + urclass + "<br>")
document.write("Index No.: " + urindex + "<br>")
document.write("<br>")
document.write("===Grades=== <br>")
document.write("English: " + urengmrk + "/100 " + "(A) <br>")
document.write("Mathematics: " + urmathmrk + "/100 " + "(A) <br>")
document.write("Mother Tongue: " + urmtmrk + "/100 " + "(A) <br>")
document.write("Science: " + urscimrk + "/100 " + "(A) <br>")
document.write("Total marks: " + urtotalmrk + "/400" + "<br>")
</script>
</head>
<body>
</body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.