fork download
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function displayDate()
  5. {
  6. document.getElementById("demo").innerHTML=Date();
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <h1>My First Web Page</h1>
  13. <p id="demo">This is a paragraph.</p>
  14.  
  15. <button type="button" onclick="displayDate()">Display Date</button>
  16.  
  17. </body>
  18. </html>
  19.  
Runtime error #stdin #stdout 0.27s 213120KB
stdin
Standard input is empty
stdout
Standard output is empty