Files
2025-12-19 23:19:28 +01:00

62 lines
2.3 KiB
HTML

<html>
<head>
<link rel="stylesheet" type="text/css" href="semantic.css">
<script src="codenames.js"></script>
<link rel="stylesheet" type="text/css" href="codenames.css">
<meta name="title" content="Générateur de grille CodeName">
<meta name="description" content="Webapp application to generate randomized grid layouts for the popular CodeNames boardgame filled with french words.">
<meta name="keywords" content="code,names,codenames,generator,grid">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="French">
<meta name="revisit-after" content="3 days">
<meta name="author" content="Shikiryu">
<title>Générateur de grille CodeName</title>
</head>
<body>
<div class="ui container">
<h1 class="ui header center aligned" style="padding-top:2em;font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif">Générateur de grille CodeName</h1>
<button class="fluid ui button" id="generate">Cliquez ici pour générer une nouvelle table</button>
<table id="grid" class="top attached ui basic table">
<tbody>
<tr>
<td id="1"></td>
<td id="2"></td>
<td id="3"></td>
<td id="4"></td>
<td id="5"></td>
</tr>
<tr>
<td id="6"></td>
<td id="7"></td>
<td id="8"></td>
<td id="9"></td>
<td id="10"></td>
</tr>
<tr>
<td id="11"></td>
<td id="12"></td>
<td id="13"></td>
<td id="14"></td>
<td id="15"></td>
</tr>
<tr>
<td id="16"></td>
<td id="17"></td>
<td id="18"></td>
<td id="19"></td>
<td id="20"></td>
</tr>
<tr>
<td id="21"></td>
<td id="22"></td>
<td id="23"></td>
<td id="24"></td>
<td id="25"></td>
</tr>
</tbody>
</table>
<footer class="ui header center aligned">App by <a href="https://www.github.com/almiche" class="ui link">Michel Chatmajian</a> with words from <a href="https://gist.github.com/MissingNoShiny/cbb22b220a0245cb0cea98e3f59f6301">MissingNoShiny</a></footer>
</div>
</body>
</html>