Code
<!DOCTYPE html>
<html>
    <body>
        <head>
            <title>Wikitechy HTML colspan attribute</title>
        </head>
        <table border=1>
            <tr>
                <th>Firstname  </th>
                <th>Lastname  </th>
            </tr>
            <tr>
                <td colspan="2">Wikitechy </td>
            </tr>
        </table>
    </body>
</html>                                                                                                                                                                                                                                                                                                                                                                                                              

Result