index.html 542 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <!-- Interface page -->
  4. <head>
  5. <title>Web interface for GCC compiler</title>
  6. </head>
  7. <!-- Create two horizontal frames of 20% and 80% height -->
  8. <frameset rows="20%,80%">
  9. <!-- Load the header -->
  10. <frame name="header" src="header.html">
  11. <!-- Create two vertical frames of 53% and 47% width -->
  12. <frameset cols="53%,47%">
  13. <!-- Load the input frame -->
  14. <frame name="input" src="input.html">
  15. <!-- Load the output frame -->
  16. <frame name="output" src="output.php">
  17. </frameset>
  18. </frameset>
  19. </html>