header.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!-- Code by Sunit Kumar Nandi -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>WebGCC</title>
  6. <link href='http://fonts.googleapis.com/css?family=Nixie+One|Iceland' rel='stylesheet' type='text/css'>
  7. <!-- I'd link to the CSS, but this baby deserves her own style! -->
  8. </head>
  9. <body>
  10. <style type="text/css">
  11. h1 {
  12. font-family: "Iceland", cursive;
  13. color: #FFFFFF;
  14. }
  15. p {
  16. font-family: "Nixie One", cursive;
  17. color: #FFFFFF;
  18. }
  19. body{
  20. background-image: -webkit-gradient(
  21. linear,
  22. left top,
  23. left bottom,
  24. color-stop(0, #3B7FD9),
  25. color-stop(1, #8426FF)
  26. );
  27. background-image: -o-linear-gradient(bottom, #3B7FD9 0%, #8426FF 100%);
  28. background-image: -moz-linear-gradient(bottom, #3B7FD9 0%, #8426FF 100%);
  29. background-image: -webkit-linear-gradient(bottom, #3B7FD9 0%, #8426FF 100%);
  30. background-image: -ms-linear-gradient(bottom, #3B7FD9 0%, #8426FF 100%);
  31. background-image: linear-gradient(to bottom, #3B7FD9 0%, #8426FF 100%);
  32. }
  33. </style>
  34. <h1 align="center">GCC web interface</h1>
  35. <p align="center">Test your C/C++ codes online. By Sunit Kumar Nandi</p>
  36. </body>
  37. </html>