Edit in JSFiddle

<body>
     <table border="1" align="center" width="40%">
     <caption>Employee Details</caption>
     <colgroup span="2" style="background-color:gray;color:silver;">
     </colgroup>
     <colgroup style="background-color:orange;color:red;">
     </colgroup>
     <tr>
     <th>EmpId</th>
     <th>Name</th>
     <th>Department</th>
     </tr>
     <tr>
     <td>1001</td>
     <td>Gurdeep</td>
     <td>Testing</td>
     </tr>
     <tr>
     <td>1002</td>
     <td>Roschelle</td>
     <td>DBA</td>
     </tr>
     </table>
     </body>