embedded.html 417 B

12345678910111213141516171819
  1. <html>
  2. <head>
  3. <title>Hello World!</title>
  4. <style>
  5. body{
  6. background-color: rgba(250,250,250,0.7);
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <h1>Hello World! This is a demo subservice for ArOZ Online System.</h1>
  12. <button onclick="doSomething();">Click Me</button>
  13. <script>
  14. function doSomething(){
  15. }
  16. </script>
  17. </body>
  18. </html>