Choose the correct HTML to left-align the content inside a tablecell
-
<td leftalign>
-
<td valign="left">
-
<td align="left">
-
<tdleft>
C
Correct answer
Explanation
The align="left" attribute is the correct HTML way to horizontally align content within a table cell. Option B incorrectly uses valign (which is for vertical alignment), while options A and D use non-existent attributes. This attribute applies to td, th, and tr elements.