22 lines
402 B
HTML
22 lines
402 B
HTML
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Breaking Ball</title>
|
||
|
<link rel='stylesheet' href='styles.css'>
|
||
|
</head>
|
||
|
|
||
|
<body onkeydown="keyListen(event);">
|
||
|
|
||
|
<div id="score"></div>
|
||
|
<div id="container">
|
||
|
<table id="tabl" border="0"></table>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
</body>
|
||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
|
||
|
<script src="main.js"></script>
|
||
|
|
||
|
</html>
|