💻 Código HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="author" content="Jostyn VY">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Tablas</title>
</head>
<body>
    <h1>Tablas</h1>
    <table border="1">
        <caption>Tabla 1</caption>
        <thead>
            <tr>
                <th scope="col"></th>
                <th scope="col">Columna 1</th>
                <th>Edad</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <th scope="row">Fila 1</th>
                <td>Lorem Ipsum</td>
            </tr>
        </tbody>   
    </table>

    <table border="1">
        <caption>Tabla 2</caption>
        <thead>
            <tr>
                <th scope="col" colspan="2" rowspan="2"></th>
                <th scope="col" rowspan="2">Columna 1</th>
                <th scope="col" colspan="2">Columna 2</th>
            </tr>
            <tr>
                
                <th scope="col">Columna 2a</th>
                <th scope="col">Columna 2b</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <th scope="row" rowspan="2">Fila</th>
                <th scope="row">Fila 1a</th>
                <td>Lorem Ipsum</td>
                <td>Lorem Ipsum</td>
                <td>Lorem Ipsum</td>
            </tr>
            <tr>
                <th scope="row">Fila 1b</th>
                <td>Lorem Ipsum</td>
                <td>Lorem Ipsum</td>
                <td>Lorem Ipsum</td>
            </tr>
            <tr>
                <th scope="row" colspan="2">Fila 2</th>
                <td>Lorem Ipsum</td>
                <td>Lorem Ipsum</td>
                <td>Lorem Ipsum</td>
            </tr>
        </tbody>
    </table>
</body>
</html>

📸 Resultado del ejercicio

Resultado ⬅ Volver