Skip to content

Instantly share code, notes, and snippets.

@league
Last active February 23, 2017 19:38
Show Gist options
  • Save league/ac77d5d9bbc39f972db049164fba9642 to your computer and use it in GitHub Desktop.
Save league/ac77d5d9bbc39f972db049164fba9642 to your computer and use it in GitHub Desktop.
<html>
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- this is your page's icon below-->
<link rel="icon" href="http://orig01.deviantart.net/2dd9/f/2011/202/b/9/green_lantern_icon_3_by_jeremymallin-d417u4p.png">
<!-- Change your title below-->
<title>Your website title</title>
<style>
.ProfileColumn{
position:fixed;
width:15%;
height:100%;
top:0;
left:0;
background-color: #e8e8e8;
z-index:3;
border: 1px solid black;
box-shadow: 1px 1px 1px;
}
.myPicture{
width:99%;
height:35%;
box-shadow: 1px 1px 2px;
}
.information{
position:relative;
padding-left:17%;
float:left;
}
.AboutSection{
padding-top: 50px;
position:relative;
padding-left:17%;
padding-right:3%;
float:left;
}
#name {
text-align:center;
}
footer{
position:fixed;
bottom:0;
right:10px;
}
</style>
</head>
<body>
<div class="ProfileColumn">
<h1 id="name" > Bruce Wayne </h1>
<img class="myPicture" src="http://vignette3.wikia.nocookie.net/superman/images/a/a1/Superman-jlu.jpg/revision/latest/scale-to-width-down/185?cb=20100917010607" />
<br />
<br />
<a href="http://marvel.com/">Heres a link to the DC website</a>
</div>
<div class="AboutSection">
<h2>About me</h2>
<p>Superman is a fictional superhero appearing in American comic books published by DC Comics. The character was created by writer Jerry Siegel and artist Joe Shuster, high school students living in Cleveland, Ohio, in 1933. They sold Superman to Detective Comics, the future DC Comics, in 1938. Superman debuted in Action Comics #1 (cover-dated June 1938) and subsequently appeared in various radio serials, newspaper strips, television programs, films, and video games. With this success, Superman helped to create the superhero archetype and establish its primacy within the American comic book.[1] The character is also referred to by such epithets as the Man of Steel, the Man of Tomorrow, and The Last Son of Krypton.[2]</p>
<p>
The origin story of Superman relates that he was born Kal-El on the alien planet Krypton, before being rocketed to Earth as an infant by his scientist father Jor-El, moments before Krypton's destruction. Discovered and adopted by a Kansas farmer and his wife, the child is raised as Clark Kent and imbued with a strong moral compass. Very early on he started to display various superhuman abilities, which, upon reaching maturity, he resolved to use for the benefit of humanity through a secret "Superman" identity.
</p>
<hr />
<h2>Actors who played Clark Wayne</h2>
<p>Adam West</p>
<p>The man logging the most hours in the Batcave, of course, was William West Anderson, whom you probably know better as Adam West. Either you love him for his goofy charm or hate him for blemishing the Bat’s image for several decades. His campy, over-the-top portrayal of Gotham’s Guardian infiltrated nearly every medium, including a 1966 movie and several animated series.</p>
<p>Legend has it producer William Dozier cast West after seeing him play a James Bond-like spy called Captain Q in a Nestlé Quik TV ad. He beat future Wonder Woman co-star Lyle Waggoner for the role. Dozier, who supposedly hated comic books, decided the only way the show would be successful was if they camped it up. So blame him.</p>
<p>Things would almost come full circle when, in 1970, West was offered the role of James Bond in Diamonds Are Forever. West declined, later writing in his autobiography that he believed Bond should always be played by a Brit. Holy bad career moves, Batman!</p>
<p>After the Batman series went off the air in 1968, West was resigned to typecast hell. At one point he was forced to make public appearances as the Caped Crusader to earn a living. Then, in 1977, he returned to the tube as Batman, doing his voice in The New Adventures Of Batman, and then on such shows as Super Friends.</p>
</div>
<br />
<div class="information">
<h2><i class="material-icons">chevron_right</i>Education</h2>
<ul>
<li> My HighSchool Name </li>
<li> My University Name </li>
</ul>
<h2><i class="material-icons">chevron_right</i>Work Experience</h2>
<ul>
<li>Professional playboy billionaire</li>
<li>Dog Walker </li>
<li>Teachers Assistant</li>
<li>Cashier</li>
<li>Sales Associate</li>
<li>International Spy</li>
</ul>
<h2><i class="material-icons">chevron_right</i>Skills </h2>
<ul>
<li>cooking</li>
<li>Microsoft Office Suite</li>
<li>Dog Whisperer</li>
</ul>
</div>
<footer>
<!--Change you email below-->
<p><b>Email:</b> Clark.Kent@batcave.WatchTower</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment