ASDV-WebDev/Semester 1/Chapter ZIPs/JavaScript/ch04/ex_4_29.html

16 lines
291 B
HTML

2023-03-14 08:51:55 +07:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Example 4.28</title>
<script>
document.write(String.fromCharCode(72,69,76,76,79));
document.write(", ");
document.write(String.fromCharCode(66,79,82,73,83));
</script>
</head>
<body>
</body>
</html>