1
0

index.html 908 B

123456789101112131415161718192021222324252627282930313233
  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. <<<<<<< HEAD
  10. <frameset rows="16%,84%">
  11. <frame name="header" src="header.html">
  12. <frameset cols="53%,47%">
  13. <frame name="input" src="input.html">
  14. <frame name="output" src="output.php">
  15. </frameset>
  16. =======
  17. <!-- Create two horizontal frames of 20% and 80% height -->
  18. <frameset rows="20%,80%">
  19. <!-- Load the header -->
  20. <frame name="header" src="header.html">
  21. <!-- Create two vertical frames of 53% and 47% width -->
  22. <frameset cols="53%,47%">
  23. <!-- Load the input frame -->
  24. <frame name="input" src="input.html">
  25. <!-- Load the output frame -->
  26. <frame name="output" src="output.php">
  27. </frameset>
  28. >>>>>>> 993de84b2fbccdce0b2c1c76291839d38519b9cf
  29. </frameset>
  30. </html>