Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
popt00 authored Apr 22, 2024
1 parent 8cd0a03 commit 7c7abce
Showing 1 changed file with 41 additions and 9 deletions.
50 changes: 41 additions & 9 deletions pong_game/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,46 @@
<script src="index_js.js"></script>
</head>
<body>
<div>
<h1>
Let us Dual
</h1>
</div>
<div id="scorezone"></div>
<div id="gamezone">
<img src="src/play.jpg" onclick="play()" width="100px">
</div>
<div class="main_body">
<div class="heading">
<h1>
Let us Dual
</h1>
<h3>
Max Score 3
</h3>
</div>
<div class="gamezone_outer">
<div id="play_button_div">
<img src="src/play.jpg" id="playButton" onclick="play()" width="100px">
</div>

<div id="scorezone"></div>
<div id="gamezone">
<p>
Let us have fair fight
</p>
<table>
<tr>
<td>
Left Player:
</td>
<td>
Right Player:
</td>
</tr>
<tr>
<td>
<br> press w for up
<br>&<br> s for down</td>
<td>
<br> press ↑ for up
<br>&<br> ↓ for down
</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>

0 comments on commit 7c7abce

Please sign in to comment.