<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Game</title>
<link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Belgrano' rel='stylesheet' type='text/css'>
<link href="css/styles.css" rel="stylesheet" type="text/css">
<script src="jquery-1.4.2.min.js"></script>
<script>
$(document).ready(function() {
$("img").on("contextmenu",function(){
return false;
});
});
$(document).bind('keydown', 'ctrl+s', function(){$('#save').click(); return false;});
</script>
<script>
$(function() {
$(this).bind("contextmenu", function(e) {
e.preventDefault();
});
});
</script>
<script type="text/javascript">
if (document.layers) {
//Capture the MouseDown event.
document.captureEvents(Event.MOUSEDOWN);
//Disable the OnMouseDown event handler.
document.onmousedown = function () {
return false;
};
}
else {
//Disable the OnMouseUp event handler.
document.onmouseup = function (e) {
if (e != null && e.type == "mouseup") {
//Check the Mouse Button which is clicked.
if (e.which == 2 || e.which == 3) {
//If the Button is middle or right then disable.
return false;
}
}
};
}
//Disable the Context Menu event.
document.oncontextmenu = function () {
return false;
};
</script>
<script type="text/javascript">
if (document.layers) {
//Capture the MouseDown event.
document.captureEvents(Event.MOUSEDOWN);
//Disable the OnMouseDown event handler.
document.onmousedown = function () {
return false;
};
}
else {
//Disable the OnMouseUp event handler.
document.onmouseup = function (e) {
if (e != null && e.type == "mouseup") {
//Check the Mouse Button which is clicked.
if (e.which == 2 || e.which == 3) {
//If the Button is middle or right then disable.
return false;
}
}
};
}
//Disable the Context Menu event.
document.oncontextmenu = function () {
return false;
};
</script>
</head>
<body>
<div class="wrapper">
<header>
<div class="logo"><h1><a href="index.html">Game</a></h1></div>
<nav>
<ul id="navlist">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="service.html">Services</a></li>
<li id="active"><a href="contact.html">Contact us</a></li>
</ul>
</nav>
<div class="clearfloat"></div>
</header>
<section>
<div class="horSeparator"></div>
<h1>Feedback Form</h1>
<form name="" method="post" action="">
<input type="text" name="search" placeholder="Name..">
<textarea name="address" rows="5" placeholder="Feedback of Customers.."></textarea>
<input type="text" name="phone" placeholder="Phone Number..">
<input type="email" name="email" placeholder="Email..">
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
<div class="horSeparator"></div>
</section>
<section class="sectionFooter">
<div class="footerBox">
<h2> Contact Us</h2>
<p>
The Game Productions<br>
Opp. 5th Cross, Near ****, *** Post,<br>
***, *** - *** ***.<br>
Tel: 0000 - 0000000 | Mob: +91 0000000000.
E-mail: <a href="someone@email.com">something@email.com</a> </p>
</div>
<!-- <div class="footerBox">
<h2>The industry's standard dummy text ever since the 1500s</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard <strong>dummy text ever since the 1500s</strong>, when an unknown printer took a galley of type and scrambled
</p>
<a href="">read more...</a>
</div>-->
<div class="clearfloat"></div>
</section>
</div>
<footer>
<p>
Copyright © Your The Game. All rights reserved.
</p>
</footer>
</body>
</html>