You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

149 lines
2.8 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chessboard | tait.tech</title>
<link rel="stylesheet" href="/assets/css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Tait Hoyem">
<meta name="keywords" content="">
<meta name="description" content="">
</head>
<body>
<div id="wrapper">
<header>
<h1>tait.tech</h1>
<nav>
<a href="/" class="nav-link" >Home</a>
<a href="/blog/" class="nav-link" >Blog</a>
<a href="/ideas/" class="nav-link" >Ideas</a>
<a href="/links/" class="nav-link" >Links</a>
<a href="https://github.com/TTWNO/" class="nav-link" target="_blank" rel="noopener noreferrer" >Github</a>
</nav>
</header>
<main>
<!-- https://www.w3.org/WAI/tutorials/tables/two-headers/ -->
<table>
<caption>Chess board</caption>
<thead>
<td></td>
<th scopre="col">A</th>
<th scopre="col">B</th>
<th scopre="col">C</th>
<th scopre="col">D</th>
<th scopre="col">E</th>
<th scopre="col">F</th>
<th scopre="col">G</th>
<th scopre="col">H</th>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>R</td>
<td>K</td>
<td>B</td>
<td>K</td>
<td>Q</td>
<td>B</td>
<td>K</td>
<td>R</td>
</tr>
<tr>
<th scope="row">2</th>
<td>P</td>
<td>P</td>
<td>P</td>
<td>P</td>
<td>P</td>
<td>P</td>
<td>P</td>
<td>P</td>
</tr>
<tr>
<th scope="row">3</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row">4</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row">5</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row">6</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row">7</th>
<td>p</td>
<td>p</td>
<td>p</td>
<td>p</td>
<td>p</td>
<td>p</td>
<td>p</td>
<td>p</td>
</tr>
<tr>
<th scope="row">8</th>
<td>r</td>
<td>k</td>
<td>b</td>
<td>k</td>
<td>q</td>
<td>b</td>
<td>k</td>
<td>r</td>
</tr>
</tbody>
</table>
</main>
<hr>
<footer>
This page is mirrored on <a href="https://beta.tait.tech/tests/chess/">beta.tait.tech</a>.
</footer>
</div>
</body>
</html>