I have a HTML page as shown below, I am trying to scrape the date from the table on about line 30.
<HTML>
<HEAD>
<TITLE>
HGV|DAF|
</TITLE>
<LINK rel="stylesheet" type="text/css" href="report.css" >
</HEAD>
<BODY BGCOLOR="WHITE" TEXT="BLACK" >
<TABLE BORDER="0" WIDTH="100%" CELLSPACING="0">
<TR>
<TD WIDTH="100%" colspan=" 2"><font face="Courier New" size="2" COLOR="BLACK">Commercial</font></TD>
</TR>
<TR>
<TD WIDTH="90%" ><font face="Courier New" size="2" COLOR="BLACK">DETAILED BRAKE TEST RESULT - FULL TEST</font></TD>
<TD WIDTH="10%" ALIGN=RIGHT><font face="Courier New" size="2" COLOR="BLACK">483</font></TD>
</TR>
</TABLE>
<HR SIZE="1" WIDTH="100%" COLOR="BLACK">
<TABLE BORDER="0" WIDTH="100%" CELLSPACING="0">
<TR>
<TD WIDTH="100%" colspan=" 2"><font face="Courier New" size="2" COLOR="BLACK"><BR></font></TD>
</TR>
</TABLE>
<TABLE BORDER="0" WIDTH="100%" CELLSPACING="0">
<TR>
<TD WIDTH="16%" ><font face="Courier New" size="2" COLOR="BLACK">DTp Number</font></TD>
<TD WIDTH="2%" ><font face="Courier New" size="2" COLOR="BLACK">:</font></TD>
<TD WIDTH="11%" ><font face="Courier New" size="2" COLOR="BLACK">6136M</font></TD>
<TD WIDTH="22%" ><font face="Courier New" size="2" COLOR="BLACK">TYPE APPROVED</font></TD>
<TD WIDTH="8%" ><font face="Courier New" size="2" COLOR="BLACK">Loc.</font></TD>
<TD WIDTH="2%" ><font face="Courier New" size="2" COLOR="BLACK">:</font></TD>
<TD WIDTH="39%" colspan=" 4"><font face="Courier New" size="2" COLOR="BLACK">Barnoldswick</font></TD>
</TR>
<TR>
<TD WIDTH="16%" ><font face="Courier New" size="2" COLOR="BLACK">Vehicle Make</font></TD>
<TD WIDTH="2%" ><font face="Courier New" size="2" COLOR="BLACK">:</font></TD>
<TD WIDTH="33%" colspan=" 2"><font face="Courier New" size="2" COLOR="BLACK">DAF</font></TD>
<TD WIDTH="8%" ><font face="Courier New" size="2" COLOR="BLACK">Date</font></TD>
<TD WIDTH="2%" ><font face="Courier New" size="2" COLOR="BLACK">:</font></TD>
<TD WIDTH="18%" ><font face="Courier New" size="2" COLOR="BLACK">Wed 03/08/2022</font></TD>
<TD WIDTH="6%" ><font face="Courier New" size="2" COLOR="BLACK">Time</font></TD>
<TD WIDTH="2%" ><font face="Courier New" size="2" COLOR="BLACK">:</font></TD>
<TD WIDTH="13%" ><font face="Courier New" size="2" COLOR="BLACK">14:11</font></TD>
</TR>
<TR>
<TD WIDTH="16%" ><font face="Courier New" size="2" COLOR="BLACK">Vehicle Type</font></TD>
<TD WIDTH="2%" ><font face="Courier New" size="2" COLOR="BLACK">:</font></TD>
<TD WIDTH="33%" colspan=" 2"><font face="Courier New" size="2" COLOR="BLACK">4 AXLE RIGID HGV</font></TD>
<TD WIDTH="8%" ><font face="Courier New" size="2" COLOR="BLACK">GVW</font></TD>
<TD WIDTH="2%" ><font face="Courier New" size="2" COLOR="BLACK">:</font></TD>
<TD WIDTH="18%" ><font face="Courier New" size="2" COLOR="BLACK">32000kg</font></TD>
<TD WIDTH="21%" colspan=" 3"><font face="Courier New" size="2" COLOR="BLACK"> </font></TD>
</TR>
I have been trying with beautiful soup but because there is no tag or unique attribute I have been unsuccessful.
If anyone can point me in the right direction I'd very much appreciate it.