Added Pong game using iframe

This commit is contained in:
TechRunner2
2018-04-09 21:52:48 -05:00
parent 1546ef909f
commit 0d0f11f7a2
2 changed files with 29 additions and 0 deletions

24
pong.html Normal file
View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<title>Retro City</title>
<script src='sketch.js' type="text/javascript"></script>
<link href='style.css' rel='stylesheet'>
</head>
<body>
<div class="wraper">
<!--Header/Nav-->
<div class="header">
<h1 id="logo">Retro City</h1>
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="pong.html"><strong>Pong</strong></a></li>
<li><a href="systems.html">Systems</a></li>
<li><a href="games.html">Games</a></li>
</ul>
</div>
<iframe id="pong" height="100%" width="100%" src="PongP5JS/index.html" frameborder="0"></iframe>
</body>
</html>