12345678910111213141516171819202122232425262728293031323334353637 |
- <html>
- <head>
- <script language="javascript">
- document.onmousedown=disableclick;
- function disableclick(event)
- {
- if(event.button==2)
- {
- return false;
- }
- }
- </script>
- <title>Spellbound | Contact Us</title>
- <style>
- p {color: #ffffff;}
- a img { border: none; }
- img {class: center; border: none;}
- </style>
- <style type="text/css">
- @import url("Sansation_Light/stylesheet.css");
- body,td,th {
- font-family: Verdana, Geneva, sans-serif;
- }
- </style>
- </head>
- <body bgcolor ="#000000" oncontextmenu="return false">
- <center>
- <img width="99%" src="./img/contact.png">
- </center>
- </body>
- <footer>
- <center>
- <a href="navigation.html"><img width="20%" src="./img/home.png"></a>
- <p>© Spellbound LTD</p>
- </center>
- </footer>
- </html>
|