Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <html>
  2.  
  3. <head>
  4.     <title>ALVAN XI RPL 2</title>
  5.     <style>
  6.         p {
  7.             color: #fff;
  8.             background-color: darkslategrey;
  9.             font-size: 20pt;
  10.         }
  11.     </style>
  12. </head>
  13.  
  14. <body>
  15.     <p id="coba2"></p>
  16.     <script>
  17.         var siswa = new Array("Wicky", "Subi", "Rajab", "Renaldi")
  18.  
  19.         document.getElementById("coba2").innerHTML = siswa[2];
  20.     </script>
  21. </body>
  22.  
  23. </html>