contact.html 762 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <html>
  2. <head>
  3. <script language="javascript">
  4. document.onmousedown=disableclick;
  5. function disableclick(event)
  6. {
  7. if(event.button==2)
  8. {
  9. return false;
  10. }
  11. }
  12. </script>
  13. <title>Spellbound | Contact Us</title>
  14. <style>
  15. p {color: #ffffff;}
  16. a img { border: none; }
  17. img {class: center; border: none;}
  18. </style>
  19. <style type="text/css">
  20. @import url("Sansation_Light/stylesheet.css");
  21. body,td,th {
  22. font-family: Verdana, Geneva, sans-serif;
  23. }
  24. </style>
  25. </head>
  26. <body bgcolor ="#000000" oncontextmenu="return false">
  27. <center>
  28. <img width="99%" src="./img/contact.png">
  29. </center>
  30. </body>
  31. <footer>
  32. <center>
  33. <a href="navigation.html"><img width="20%" src="./img/home.png"></a>
  34. <p>&copy; Spellbound LTD</p>
  35. </center>
  36. </footer>
  37. </html>