programnode.html 773 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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: 150px;
  14. height: 28px;
  15. }
  16. #preview {
  17. display: block;
  18. padding: 35px 20px 20px 0px;
  19. }
  20. #header {
  21. padding: 0px 0px 20px 0px;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <form>
  27. <p>This program node will open a popup on execution.</p><br \>
  28. <label>Enter your name:</label> <input id="yourname" type="text"/>
  29. <br/>
  30. <div id="preview">
  31. <h3 id="header">Preview</h3><br \>
  32. Title: <label id="titlePreviewLabel" style="width: 400px;"/> <br \>
  33. Message: <label id="messagePreviewLabel" style="width: 400px;"/>
  34. </div>
  35. </form>
  36. </body>
  37. </html>