Skip to content

Instantly share code, notes, and snippets.

@Bee94
Created May 20, 2019 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bee94/759baf38df0fa0895f4ae73db2606f65 to your computer and use it in GitHub Desktop.
Save Bee94/759baf38df0fa0895f4ae73db2606f65 to your computer and use it in GitHub Desktop.
FCC 1: Tribute Page
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<!--
This is a tribute page.
-->
<!DOCTYPE html>
<html>
<main id= "main">
<h1 id="title"> Alan Rickman </h1>
<h4> 21 February 1946 – 14 January 2016</h4>
<div id="img-div">
<img id="image" src="https://i0.wp.com/mannerofspeaking.org/wp-content/uploads/2016/01/alan-rickman.jpg?resize=423%2C271&ssl=1" alt= "Alan Rickman">
<p id= "img-caption"> Severus Snape of Harry Potter Series </p>
</div>
<body id="tribute-info">
<p> Alan Sidney Patrick Rickman born on 21 February 1946 was an English actor and director. He trained at the Royal Academy of Dramatic Art in London and became a member of the Royal Shakespeare Company (RSC), performing in modern and classical theatre productions. </p>
<p> In 1982, he first starred in a television role but his big break was playing Vicomte de Valmont in the RSC stage production of Les Liaisons Dangereuses in 1985.
Rickman began his film career through BBC's Shakeperare series playing Tybalt in Romeo and Juliet 1978). Other famous film roles included the German terrorist leader Hans Gruber in Die Hard (1988), Sheriff of Nottingham in Robin Hood: Prince of Thieves (1991), for which he received the BAFTA Award for Best Actor in a Supporting Role, Elliott Marston in Quigley Down Under (1990), Jamie in Truly, Madly, Deeply (1990), and Severus Snape in the Harry Potter series. His most famous dialogue from Harry Potter series was "Always" as he depicted it perfectly along the lines of J.K. Rowling's book.</p>
<p>In television films, Rickman appeared playing the title character in Rasputin: Dark Servant of Destiny (1996), which won him a Golden Globe Award, an Emmy Award and a Screen Actors Guild Award, and Dr. Alfred Blalock in the Emmy-winning Something the Lord Made (2004). </p>
<p> At the age of 69, Rickman died after suffering pancreatic cancer on 14 January 2016. Images of Rickman along with captions "Always" were widely circulated as the world mourned his loss.</p>
<img id="rickman-always" src="https://cdn.dnaindia.com/sites/default/files/styles/full/public/2016/01/14/414712-alan-rickman.jpg" alt= "Rickman's Always">
<p style="text-align: center;"> Read more about him on his <a href= "https://en.wikipedia.org/wiki/Alan_Rickman" id="tribute-link" target="_blank" alt= "wikipedia entry"> Wikipedia entry. </a> </p>
</body>
</main>
</html>
#main{
margin: 20px auto;
padding:10px;
border: 0px solid;
border-radius: 10px;
}
h1, h4, #img-caption{
font-family: sans-serif, Arial, Helvetica;
text-align: center;
}
#image{
max-width: 100%;
display: block;
height: auto;
margin: auto;
}
#img-div{
background-color: #eeeeee;
}
p{
font-family: sans-serif, Arial, Helvetica;
text-align: left;
}
#rickman-always{
height: 50%;
width: 50%;
display: block;
margin: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment