-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (25 loc) · 1.03 KB
/
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
25
26
<!DOCTYPE html>
<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">
<title>ABC Drag and drop game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="box" draggable="true" style="background-color: #ff6384;" id="0"><span>A</span></div>
<div class="box" draggable="true" style="background-color: #36a2eb;" id="1"><span>B</span></div>
<div class="box" draggable="true" style="background-color: #ffce56;" id="2"><span>C</span></div>
<div class="box" draggable="true" style="background-color: #9966ff;" id="3"><span>D</span></div>
<div class="box" draggable="true" style="background-color: #4bc0c0;" id="4"><span>E</span></div>
<div id="message" class="message">
<h2>Congratulation!</h2>
<p>
You won the game. Click PLAY AGAIN to retart the game
</p>
<button id="retart-btn" class="btn">Restart</button>
</div>
<script src="script.js"></script>
</body>
</html>