-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (55 loc) · 2.72 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-W9S98RR');</script>
<!-- End Google Tag Manager -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
</script>
<script src="js/script.js">
</script>
<!-- <script src="./js/bootstrap.min.js">
</script> -->
<link href="./css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="./css/mainstyle.css">
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W9S98RR"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="container">
<div id="sidebar-wrapper">
<div id="inner" class="menu-toggle">
<div id="sidebar" class="menu-toggle">
<ul id="sidebarList" class="nav nav-sidebar">
<li><a href="./index.html" class="notlink sidebarItem">Home</a></li>
</ul>
</div>
</div>
</div>
<h1><a href="http://www.3-1leads.com">3-1Leads.com</a></h1>
<div id="content" class="page-content body-fillcanvas">
<p>In hockey, a 3-1 lead is commonly regarded as the worst lead to have in a game or series. This extends to other sports like <a class="pinklink" href="http://www.nba.com/playoffs/2016/finals/">basketball</a> or <a class="pinklink" href="http://m.mlb.com/news/article/207938228/chicago-cubs-win-2016-world-series/">baseball</a>, and some even reference the <a class="pinklink" href="http://biblehub.com/job/3-1.htm">bible</a>. I was curious what the actual statistics were like for hockey, so I put this together to try and aggregate that data.</p>
<h3>Incomplete Data</h3>
<p>I have not found enough information for the following games in order to correctly add them to their season, since they may or may not have had 3-1 leads in the games.</p>
<script>
$.get('http://www.3-1leads.com/unknowns.txt')
.done(function(response) {
createTable(parseResponse(response))
})</script>
</div>
</div>
<footer class="site-footer">
<div id="icons">
<a class="link" href="https://github.com/shankera/3-1leads">
<img src="./res/github.png"/>
</a>
</div>
</footer>
</body>
</html>