-
Notifications
You must be signed in to change notification settings - Fork 1
/
earl.html
102 lines (99 loc) · 5.77 KB
/
earl.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!doctype html>
<html>
<head>
<title>Hall of Fame</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<!-- My CSS -->
<link rel="stylesheet" href="main.css">
</head>
<body>
<header class="navbar-inverse navbar-fixed-top" role="banner">
<div class="container">
<nav role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a id="home" class="navbar-brand" href="index.html">Saints Information Page</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="stats.html">Stats</a></li>
<li><a href="schedule.html">Schedule</a></li>
<li><a href="hof.html">Hall of Fame</a></li>
</ul>
<form class="navbar-form navbar-right" role="search">
<div class="form-group">
<input type="text" id="searchBar" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<ul class="nav navbar-nav navbar-right">
<li><a href="testpage.html">Fun Page</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Saints Links<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="http://www.neworleanssaints.com">New Orleans Saints Home Page</a></li>
<li><a href="http://www.saintsreport.com">Saints Report</a></li>
<li><a href="http://www.nfl.com/teams/neworleanssaints/profile?team=NO">Team Profile on NFL.com</a></li>
<li><a href="http://www.neworleanssaints.com/team/history/hall-of-fame.html">Saints Hall of Fame Information</a></li>
</ul>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div>
</nav>
</div>
</header>
<div class="container-fluid">
<div class="col-md-3"></div>
<div class="col-md-7">
<ul class="nav nav-tabs" role="tablist">
<li><a href="hof.html">Willie Roaf</a></li>
<li><a href="ricky.html">Ricky Jackson</a></li>
<li><a href="jimfinks.html">Jim Finks</a></li>
<li class="active"><a href="earl.html">Earl Campbell</a></li>
<li><a href="hank.html">Hank Stram</a></li>
<li><a href="doug.html">Doug Atkins</a></li>
<li><a href="jimT.html">Jim Taylor</a></li>
</ul>
<div class="col-md-3"></div>
<div class="row">
<div class="col-sm-6 col-md-10">
<div class="thumbnail">
<img src="img\EarlCampbell.jpg"></img>
<div class="caption">
<h3>Earl Campbell</h3>
<p>Earl Campbell, a 5-11, 232-pound ball-carrying dynamo from the University of Texas, joined the Houston Oilers as the first player taken in the 1978 National Football League Draft. The first player to earn All-Southwest Conference honors four years, Campbell was a consensus All-America and the Heisman Trophy winner in 1977.<br><br>
Born March 29, 1955, in Tyler, Texas, Campbell took the NFL by storm right from the very start. In 1978, he was named the NFL's Most Valuable Player, All-Pro, and Rookie of the Year. He won the league rushing championship with 1,450 yards and was named to the AFC Pro Bowl squad. It was more of the same the next two years with NFL rushing titles, MVP honors, and consensus All-Pro acclaim each season.<br><br>
His finest year came in 1980, however, when he rushed for 1,934 yards, which at the time was second only to 0. J. Simpson’s 2003 yards gained in 1973. That year, he gained over 200 yards in four games. In 1981, he won his fourth straight AFC rushing title. A sensational runner, Campbell was picked for the Pro Bowl five of his first six NFL seasons.<br><br>
In his eight-season career, Campbell rushed 2,187 times for 9,407 yards, and 74 touchdowns. He also gained 806 yards on 121 receptions to bring his career combined net yards total to 10,213. His most famous performance came in a Monday night game against Miami in his rookie season. That night, he rushed for 199 yards and four touchdowns to lead the Oilers to a spectacular 35-30 victory. In spite of the constant pounding he took from opposing defenders, Earl missed only six games out of 115 because of injuries. Midway into his seventh season, the powerful running back was traded by the Oilers to the New Orleans Saints for a first-round draft pick. He played a season and a half with the Saints before retiring after the 1985 campaign.<br><br>
- See more at: http://www.profootballhof.com/hof/member.aspx?PlayerId=40#sthash.2BsIaMr1.dpuf</p>
<p><a href="#" class="btn btn-primary" role="button">Button</a> <a href="#" class="btn btn-default" role="button">Button</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="jquery-2.1.1.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</body>
<footer>
<div class="navbar navbar-inverse navbar-fixed-bottom">
<div class="container-fluid">
<p class="navbar-text pull-right">Site built by Ben</p>
</div>
</div>
</footer>
</html>