-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (82 loc) · 1.79 KB
/
index.html
File metadata and controls
83 lines (82 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<style>
table,
th,
td {
border: 1px solid black;
}
</style>
</head>
<body>
<table style="width:100%">
<table border="1"><caption>GREEN BAY-Current Season Performance</caption>
<tr>
<th>Straight up</th>
<th>Against spread</th>
<th>Team</th>
<th>Opponent</th>
</tr>
<tr>
<br>
<th>W-L</th>
<th>Units</th>
<th>W-L</th>
<th>O-U</th>
<th>Score</th>
<th>Half</th>
<th>Yards</th>
<th>TO</th>
<th>Score</th>
<th>Half</th>
<th>Yards</th>
<th>YPP</th>
<th>TO</th>
</tr>
<tr>
<td>All Games</td>
<td>14-6</td>
<td>+6</td>
<td>13-7</td>
<td>8-12</td>
<td>25.4</td>
<td>13.5</td>
<td>358.7</td>
<td>(6)</td>
<td>1.3</td>
<td>15.8</td>
<td>7.6</td>
<td>309.0</td>
<td>(5.4)</td>
<td>2.1</td>
</tr>
<tr>
<td>Home Games</td>
<td>7-1</td>
<td>+5.5</td>
<td>5-3</td>
<td>5-3</td>
<td>30.5</td>
<td>15.1</td>
<td>371.1</td>
<td>(6.4)</td>
<td>1.2</td>
<td>15.4</td>
<td>10.6</td>
<td>310.9</td>
<td>(5.3)</td>
<td>2.7</td>
</tr>
<tr>
<td>Last 3 Games</td>
<td>3-0</td>
<td>+3</td>
<td>3-0</td>
<td>2-1</td>
<td>33.3</td>
<td>21.10</td>
</tr>
</table>
</body>
</html>