JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<!DOCTYPE html>
<html lang="en">

    <head>
        <link rel="stylesheet" href="css/style.css">
        <meta charset="UTF-8">
        <title>Document</title>
    </head>

    <body>

        <div class="container ranking-container">
            <table>
                <thead>
                    <tr>
                        <th>Rank</th>
                        <th>User Id</th>
                        <th>Level & Status</th>
                        <th>School</th>
                        <th>Gender</th>
                        <th>Points</th>
                    </tr>
                </thead>
                <tbody>
                    <tr>
                        <td>1</td>
                        <td>
                            <div class="avatar">
                                <div class="circle">
                                    <div class="border" style="background: url(img/circle-silver.png) no-repeat; background-size: cover; background-position: center;"></div>
                                    <img src="https://picsum.photos/500/500" alt="">
                                    <div class="hover">
                                        <i class="wiz wiz-tick"></i>
                                    </div>
                                </div>
                            </div>
                        </td>
                    </tr>
                </tbody>
            </table>
        </div>

    </body>

</html>