A tribute page to one of my favorite actors
Last active
June 26, 2017 22:42
-
-
Save Madpoints/54d8a085b529ae1673ac40c06d67682f to your computer and use it in GitHub Desktop.
LeVar Burton Tribute Page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="jumbotron"> | |
<div class="row"> | |
<div class="col-xs-12"> | |
<h1 class="text-center">LeVar Burton</h1> | |
<h2 class="text-center">Imagination and Adventure</h2> | |
<div class="thumbnail"> | |
<img class="image" src="https://1ehukb3kd764oddub3rdo4uw-wpengine.netdna-ssl.com/wp-content/uploads/2016/05/fatherly_levar_burton_getting_kids_into_reading.jpg"> | |
<div class="caption" id="bio"><p><a href="https://en.wikipedia.org/wiki/LeVar_Burton"><b>Levardis Robert Martyn "LeVar" Burton Jr</b>. </a>(born February 16, 1957) is an American actor, presenter, director and author. He is best known for his roles as the host of the long-running PBS children's series Reading Rainbow, Lt. Commander Geordi La Forge in Star Trek: The Next Generation and the young Kunta Kinte in the 1977 award-winning ABC television miniseries Roots. He has also directed a number of television episodes for various iterations of Star Trek, among other programs.</p></div> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-xs-12"> | |
<h3 class="text-center">Notable Roles</h3> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-xs-6" id="film"> | |
<h4>Film</h4> | |
<ul> | |
<li>(1984) The Jesse Owens Story</li> | |
<li>(1994) Star Trek: Generations</li> | |
<li>(1996) Star Trek: First Contact</li> | |
<li>(1998) Star Trek: Insurrection</li> | |
<li>(2002) Star Trek:Nemesis</li> | |
</ul> | |
</div> | |
<div class="col-xs-6" id="tv"> | |
<h4>Television</h4> | |
<ul> | |
<li>(1977) Roots</li> | |
<li>(1983-2006) Reading Rainbow</li> | |
<li>(1987-1994) Star Trek: The Next Generation</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// $(document).ready(function(){ | |
// $.ajax({ | |
// type: "GET", | |
// url: "https://en.wikipedia.org/w/api.php?action=parse&format=json&prop=text§ion=0&page=LeVar_Burton&callback=?", | |
// contentType: "application/json; charset=utf-8", | |
// async: false, | |
// dataType: "jsonp", | |
// success: function (data, textStatus, jqXHR) { | |
// var markup = data.parse.text["*"]; | |
// var blurb = $('<div></div>').html(markup); | |
// $('#bio').html($(blurb).find('p')); | |
// console.log(data); | |
// }, | |
// error: function (errorMessage) { | |
// } | |
// }); | |
// }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.caption { | |
text-align: center; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment