Update index.html
Browse files- index.html +17 -19
index.html
CHANGED
|
@@ -1,19 +1,17 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
</body>
|
| 19 |
-
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Ping Pong Game</title>
|
| 7 |
+
<link rel="stylesheet" href="styles.css">
|
| 8 |
+
</head>
|
| 9 |
+
<body>
|
| 10 |
+
<div id="gameArea">
|
| 11 |
+
<div id="paddleLeft"></div>
|
| 12 |
+
<div id="paddleRight"></div>
|
| 13 |
+
<div id="ball"></div>
|
| 14 |
+
</div>
|
| 15 |
+
<script src="script.js"></script>
|
| 16 |
+
</body>
|
| 17 |
+
</html>
|
|
|
|
|
|