-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
17 lines (17 loc) · 786 Bytes
/
Copy pathindex.html
File metadata and controls
17 lines (17 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="tr">
<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" />
<title>javaScript - Brick Breaker Game</title>
<meta name="description" content="Bu oyun, platform üzerinde yukarı doğru hareket eden bir topu yönlendirirler. Amacı, platformu kullanarak tuğlaları kırmak ve oyun alanında mümkün olduğunca yüksek bir puan elde etmektir." />
<meta name="keywords" content="JavaScript, Oyun, Brick Breaker" />
<meta name="author" content="Serkan Yalçın" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<canvas id="gameCanvas"></canvas>
<script src="script.js"></script>
</body>
</html>