F48 (Pass): Due to using the pre element to markup tabular information

HTML Snippet Code
Scenario 1: Table markup is used to display the information
Sno Month Savings
1 January $100
2 February $80
<table> <tr> <th>Sno</th> <th scope="col">Month</th> <th scope="col">Savings</th> </tr> <tr> <td scope="row">1</td> <td>January</td> <td>$100</td> </tr> <tr> <td scope="row">2</td> <td>February</td> <td>$80</td> </tr> </table>