testing… 

<!DOCTYPE html>
<html>
<head>
    <style>
        table {
            border-collapse: collapse;
            width: 100%;
        }

        th, td {
            text-align: left;
            padding: 8px;
        }

        th {
            background-color: #f2f2f2;
        }
    </style>
</head>
<body>
    <table>
        <tr>
            <th>Driver</th>
            <th>Grand Slams</th>
            <th>Race</th>
        </tr>
        <tr>
            <td>Jim Clark</td>
            <td>8</td>
            <td>1962 British Grand Prix<br>1963 Dutch Grand Prix<br>1963 French Grand Prix<br>1963 Mexican Grand Prix<br>1964 British Grand Prix<br>1965 South African Grand Prix<br>1965 French Grand Prix<br>1965 German Grand Prix</td>
        </tr>
        <tr>
            <td>Lewis Hamilton</td>
            <td>6</td>
            <td>2014 Malaysian Grand Prix<br>2015 Italian Grand Prix<br>2017 Chinese Grand Prix<br>2017 Canadian Grand Prix<br>2017 British Grand Prix<br>2019 Abu Dhabi Grand Prix</td>
        </tr>
        <!-- Add more rows for other drivers -->
    </table>
</body>
</html>