-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (30 loc) · 1.02 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
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Righteous" rel="stylesheet">
<link rel="stylesheet" href="cards.css" type="text/css" />
<title>Ordenador de Cartas</title>
</head>
<body>
<div id="cabecera">
<span>N° de Cartas:</span>
<input id="nCartas" type="number">
<button id="botonRepartir">Repartir</button>
<button id="botonBurbuja">Ordenar estilo burbuja</button>
<button id="botonSeleccion">Ordenar por selección</button>
</div>
<div id="cartasInicio">
<div class="carta">
<div id="simboloArriba"></div>
<div id="valor"></div>
<div id="simboloAbajo"></div>
</div>
</div>
<div>
<p>Algoritmo de clasificación:</p>
<div id="contenedorLog"></div>
</div>
<script type="text/javascript" src="cards.js"></script>
</body>
</html>