<html>
<head>
<title>Untitled Document</title>
<style type="text/css">
</style>
</head>
<script>
  var c=1;
    document.write('A');
   for(var j=1;j<=3;j++){
      document.write('B');
   for(var i=1;i<=3;i++){
     document.write('C');
  document.write("<span style='font-size:30'>" + c++ +"</span>");
     document.write('D');
   }
      document.write('E');
   document.write("<br>");
 }
    document.write('F');
</script>
<body>
 

</body>
</html>