-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheasyPong.html
More file actions
31 lines (31 loc) · 781 Bytes
/
easyPong.html
File metadata and controls
31 lines (31 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pong Game</title>
</head>
<style>
@import url('httpsL//fonts.googleapis.com/css2?family=poppins&display=swap');
*{
font-family: 'poppins', sans-serif;
}
body{
text-align: center;
background-color: ghostwhite;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
position: fixed;
width: 100%;
}
</style>
<body>
<h1>Pong Game</h1>
<canvas></canvas>
<p>Control the left player by using up and down arrow keys</b></p>
<script src="easyPong.js"></script>
</body>
</html>