H51 (Pass): Using table markup to present tabular information

HTML Snippet Code
Scenario 1: Data table with table markup with proper association
Name Telephone
John 0123 456 785
Cassie 9876 532 432
<table border="1" cellpadding="5" style="text-align: center"> <tr> <th width="50%"><strong>Name</strong></th> <th><span style="font-weight: bold;">Telephone</span></th> </tr> <tr> <td>John</td> <td><a href="tel:0123456785">0123 456 785</a></td> </tr> <tr> <td>Cassie</td> <td><a href="tel:9876532432">9876 532 432</a></td> </tr> </table>