Using the macro recorder I got the necessary info, and then made slight edits to expand it to 30 years.
See if this works for you...
<font face=Courier New><SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Const</SPAN> BASECONNECTION <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">String</SPAN> = "URL;http://pytho.nss.net/nfl/(nt50p1452tre4j45xqc031jn)/pylog.aspx?team=29&season="
<SPAN style="color:#00007F">Sub</SPAN> GetData()
<SPAN style="color:#00007F">Dim</SPAN> i <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Long</SPAN>
<SPAN style="color:#00007F">For</SPAN> i = (2002 - 30) <SPAN style="color:#00007F">To</SPAN> 2002
ActiveWorkbook.Sheets.Add
ActiveSheet.Name = i
<SPAN style="color:#00007F">With</SPAN> ActiveSheet.QueryTables.Add(Connection:= _
BASECONNECTION & <SPAN style="color:#00007F">CStr</SPAN>(i), Destination:=Range("A1"))
.Name = "pylog.aspx?team=29&season=2002"
.FieldNames = <SPAN style="color:#00007F">True</SPAN>
.RowNumbers = <SPAN style="color:#00007F">False</SPAN>
.FillAdjacentFormulas = <SPAN style="color:#00007F">False</SPAN>
.PreserveFormatting = <SPAN style="color:#00007F">True</SPAN>
.RefreshOnFileOpen = <SPAN style="color:#00007F">False</SPAN>
.BackgroundQuery = <SPAN style="color:#00007F">True</SPAN>
.RefreshStyle = xlInsertDeleteCells
.SavePassword = <SPAN style="color:#00007F">False</SPAN>
.SaveData = <SPAN style="color:#00007F">True</SPAN>
.AdjustColumnWidth = <SPAN style="color:#00007F">True</SPAN>
.RefreshPeriod = 0
.WebSelectionType = xlSpecifiedTables
.WebFormatting = xlWebFormattingNone
.WebTables = """logTable"",""summaryTable"""
.WebPreFormattedTextToColumns = <SPAN style="color:#00007F">True</SPAN>
.WebConsecutiveDelimitersAsOne = <SPAN style="color:#00007F">True</SPAN>
.WebSingleBlockTextImport = <SPAN style="color:#00007F">False</SPAN>
.WebDisableDateRecognition = <SPAN style="color:#00007F">False</SPAN>
.WebDisableRedirections = <SPAN style="color:#00007F">False</SPAN>
.Refresh BackgroundQuery:=<SPAN style="color:#00007F">False</SPAN>
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">With</SPAN>
<SPAN style="color:#00007F">Next</SPAN>
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN></FONT>