damas.html 1.7 KB
Newer Older
roshka committed
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>Damas</title>
	<script type="text/javascript" src="funciondamas.js"></script>
</head>
<body>
	<table border="1px" align="center">
		<tr >
			<td id="F00" height="50px" width="50px" style="background: black "onclick="seleccionarCelda(this);"></td>
			<td id="F01" height="50px" width="50px"></td>
			<td id="F02" nombre="F02" height="50px" width="50px" style="background: black "onclick="seleccionarCelda(this)"></td>
			<td id="F03" nombre="F03" height="50px" width="50px"></td>
		</tr>
			<tr>
			<td id="F10" nombre="F10" height="50px" width="50px"></td>
			<td id="F11" height="50px" width="50px" style="background: black" onclick="seleccionarCelda(this)"></td>
			<td id="F12" nombre="F12" height="50px" width="50px" ></td>
			<td id="F13" nombre="F13 "height="50px" width="50px" style="background: black" onclick="seleccionarCelda(this)"></td>
		</tr>
			<tr>
			<td id="F20" nombre="F20" height="50px" width="50px" style="background: black" onclick="seleccionarCelda(this)"></td>
			<td id="F21" nombre="F21" height="50px" width="50px"></td>
			<td id="F22" nombre="F22" height="50px" width="50px" style="background: black" onclick="seleccionarCelda(this)"></td>
			<td id="F23" nombre="F23" height="50px" width="50px"></td>
		</tr>
			<tr>
			<td id="F30" nombre="F30" height="50px" width="50px"></td>
			<td id="F31" nombre="F31" height="50px" width="50px" style="background: black" onclick="seleccionarCelda(this)"></td>
			<td id="F32" nombre="F32" height="50px" width="50px" ></td>
			<td id="F33" nombre="F33" height="50px" width="50px" style="background: black" onclick="seleccionarCelda(this)"><img src="ficha.jpg" height="50px" width="50px"></img></td>
		</tr>

	</table>

</body>
</html>