- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemoryGameUI.html
More file actions
Latest commit
28 lines (27 loc) · 799 Bytes
/
Copy pathMemoryGameUI.html
File metadata and controls
28 lines (27 loc) · 799 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
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metahttp-equiv="X-UA-Compatible" content="IE=edge">
<metaname="viewport" content="width=device-width, initial-scale=1.0">
<linkrel="stylesheet" href="./style.css">
<title>Memory Game</title>
</head>
<body>
<main>
<divclass="box">1</div>
<divclass="box">1</div>
<divclass="box">2</div>
<divclass="box">2</div>
<divclass="box">3</div>
<divclass="box">3</div>
<divclass="box">4</div>
<divclass="box">4</div>
<divclass="box">5</div>
<divclass="box">5</div>
<divclass="box">6</div>
<divclass="box">6</div>
</main>
<scriptsrc="./script.js"></script>
</body>
</html>