<!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 id="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="service.html">Services</a></li>
<li><a href="contact.html">Contact us</a></li>
</ul>
</nav>
<div class="clearfloat"></div>
</header>
<section>
<div class="horSeparator"></div>
<h1>Welcome GAME</h1>
<p>
Lorem Ipsum is simply dummy text of the <a href="#">printing and typesetting industry</a>. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker
</p>
<div class="horSeparator"></div>
</section>
<article class="post">
<header><h1>Marvel Heroes</h1></header>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the <a href="#">leap into electronic typesetting</a>, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently
</p>
<aside>
<div><img src="images/postPic1.jpg" alt="post pic"></div>
</aside>
<div class="clearfloat"></div>
</article>
<article class="post">
<header><h1>Marvel Heroes2</h1></header>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a <a href="#">galley of type</a> and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently
</p>
<aside>
<div><img src="images/postPic2.jpg" alt="post pic"></div>
</aside>
<div class="clearfloat"></div>
</article>
<article class="post">
<header><h1>Pic It Scratch It, POP It</h1></header>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard <a href="#">dummy text ever since the 1500s</a>, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently
</p>
<aside>
<div><img src="images/postPic3.jpg" alt="post pic"></div>
</aside>
<div class="clearfloat"></div>
</article>
<section class="sectionFooter">
<div class="footerBox">
<h2>Survived not only five centuries, but also the leap into</h2>
<p>
Lorem Ipsum is simply <strong>dummy text of the printing</strong> and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled
</p>
<a href="">read more...</a>
</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>