installation.html 548 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Hello World</title>
  5. <style>
  6. input {
  7. display: inline-block;
  8. width: 200px;
  9. height: 28px;
  10. }
  11. label {
  12. display: inline-block;
  13. width: 100px;
  14. height: 28px;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <h1>Hello World</h1>
  20. <form>
  21. <p>The popup title below is shared between all Hello World program nodes.</p><br \>
  22. <p>The title cannot be empty.</p><br \>
  23. <div class="spacer">&nbsp;</div>
  24. <label>Popup title:</label><input id="popuptitle" type="text"/>
  25. </form>
  26. </body>
  27. </html>