-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 733 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 733 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="index.css" />
<script src="./dist/app.js" type="module" defer></script>
</head>
<body>
<div class="bgDiv">
<div class="titleContainer">
<h1>Ebp Card Matching Game</h1>
<h3>A card memory game</h3>
</div>
<div class="titleContainer">
<button id="startGame">Start Game</button>
<p id="tryId">Number of try: 0</p>
</div>
<div class="parentContainer">
<div class="cardContainer" id="cardContainer"></div>
</div>
</div>
</body>
</html>