index.html 644 B

12345678910111213141516171819202122
  1. <!-- Code by Sunit Kumar Nandi -->
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <title>Web interface for GCC compiler</title>
  7. <link rel="stylesheet" type="text/css" href="./style.css">
  8. </head>
  9. <!-- Create two horizontal frames of 20% and 80% height -->
  10. <frameset rows="16%,84%">
  11. <!-- Load the header -->
  12. <frame name="header" src="header.html">
  13. <!-- Create two vertical frames of 53% and 47% width -->
  14. <frameset cols="53%,47%">
  15. <!-- Load the input frame -->
  16. <frame name="input" src="input.html">
  17. <!-- Load the output frame -->
  18. <frame name="output" src="output.php">
  19. </frameset>
  20. </frameset>
  21. </html>