forked from Ankit-29/flipCards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
23 lines (21 loc) · 761 Bytes
/
game.html
File metadata and controls
23 lines (21 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flip-Cards</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/game.css">
<script src="js/classes/game.js" type="text/javascript"></script>
<script src="js/classes/card.js" type="text/javascript"></script>
<script src="js/constant.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
<div id="gameDiv" class="d-flex">
</div>
</div>
</body>
<script src="js/gamePlay.js"></script>
</html>