Last active
June 8, 2017 05:07
-
-
Save purplecandy/b489fa5777a823f6ae24d70f1740e0b6 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Tribute Page</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | |
<script src="//code.jquery.com/jquery-1.12.4.js"></script> | |
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script> | |
<script> | |
$( document ).mouseover(function() { | |
$( "#profile" ).effect( "shake" ); | |
}); | |
</script> | |
<style> | |
body { | |
background-color: #A0908E; | |
} | |
#block1 { | |
background-color: #AE6960; | |
margin: 25px 25px; | |
text-align: center; | |
} | |
#profile{ | |
margin-left: 10px; | |
margin-bottom: 10px; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="block1" class="container"> | |
<h1>Richard Stallman</h1> | |
<h5><em>FREE AS IN FREEDOM</em></h5> | |
<div class="row"> | |
<div class="col-sm-4"> | |
<div class="thumbnail"> | |
<img id="profile" src="https://upload.wikimedia.org/wikipedia/commons/3/3d/Richard_Stallman_at_Pittsburgh_University.jpg" alt="Lights" style="width:100%"> | |
<div class="caption"> | |
<p>Richard Stallman at Pitsburgh University.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment