JSFiddle - React, Tailwind, and code Playground

by Jesse M

HTML

<p>Make a 7 letter word starting with the shaded letters. Up, down, left and right. No diagonals. Theme: <strong>language</strong></p>
<table>
    <tr>
        <td>G</td>
        <td>N</td>
        <td>I</td>
        <td>C</td>
    </tr>
    <tr>
        <td>R</td>
        <td>A</td>
        <td>N</td>
        <td>T</td>
    </tr>
    <tr>
        <td>Y</td>
        <td style="background-color:#ccc;">E</td>
        <td style="background-color:#ccc;">M</td>
        <td>E</td>
    </tr>
    <tr>
        <td>O</td>
        <td>Z</td>
        <td>I</td>
        <td>Y</td>
    </tr>
</table>

CSS

td { border:1px solid #000; text-align:center; padding:5px; }