forked from dhairyagothi/100_days_100_web_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (23 loc) · 790 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>Ping Pong Game</title>
</head>
<body>
<div class="header">
<img src="https://img.freepik.com/premium-vector/table-tennis-vector-logo-ping-pong-ball-with-emblem-shape-perfect-table-tennis_297778-950.jpg" alt="logo" width="60px">
<div class="buttons">
<button class="start-btn">Start</button>
<button class="pause-btn">Pause</button>
<button class="restart-btn">Restart</button>
</div>
</div>
<div class="pong-wrapper">
<canvas id="ping-pong" width="600px" height="400px"></canvas>
</div>
</body>
</html>