run-editor-sample-html.txt 377 B

1234567891011121314151617181920212223
  1. <!DOCTYPE HTML>
  2. <!--
  3. Comments are overrated
  4. -->
  5. <html>
  6. <head>
  7. <title>HTML Sample</title>
  8. <style type="text/css">
  9. h1 {
  10. color: #CCA3A3;
  11. }
  12. body {
  13. }
  14. </style>
  15. <script type="text/javascript">
  16. window.alert("I am a sample...");
  17. </script>
  18. </head>
  19. <body>
  20. <h1>Heading No.1</h1>
  21. <input disabled type="button" value="Click me" />
  22. </body>
  23. </html>