-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.39 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
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Soquicoqui</title>
<link rel="stylesheet" href="soquicoqui.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script src="soquicoqui.js"></script>
<h1>soquicoqui sliding puzzle</h1>
<div id="parent">
<div id="square" class="square">
<img src="x.png" id="00" class="tile"/>
<img src="x.png" id="01" class="tile"/>
<img src="x.png" id="02" class="tile"/>
<br/>
<img src="x.png" id="10" class="tile"/>
<img src="x.png" id="11" class="tile"/>
<img src="x.png" id="12" class="tile"/>
<br/>
<img src="x.png" id="20" class="tile"/>
<img src="x.png" id="21" class="tile"/>
<img src="0.png" id="22" class="tile"/>
</div>
<br/>
<div id="victory" hidden>
<p id="message">✨✨ ganaste, papafrita ✨✨</p>
<button id="button">juga de nuevo</button>
</div>
<div class="footer">
<p>soquicoqui sliding puzzle brought to you by dr. panchito GmbH</p>
<p>(caro y matthias)</p>
<p>© 2024 todos los derechos reservados</p>
</div>
</div>
</body>
</html>