A Pen by Mariam O-Alli on CodePen.
Last active
July 16, 2021 12:23
-
-
Save mariamALLI/e144fce015833dc3d1b1c67e347c125f to your computer and use it in GitHub Desktop.
Tribute Page
This file contains hidden or 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 id="main"> | |
<h1 id="title">The Phenomenal Chimamanda Ngozi Adichie</h1> | |
<figure> | |
<div id="img-div"> | |
<img id="image" src="https://www.chimamanda.com/wp-content/uploads/2020/12/Web-Resolution.jpg" alt="Picture of Chimamanda Adichie" width="30%" height="30%"> | |
<figcaption id="img-caption">Chimamanda Adichie born September 15, 1977, is a phenomenal Nigerian author, who has inspired every gender around the world with her writing, poetry and novels.She encourages everyone to be a better version of themselves and be careful of people you let into your personal space.</figcaption> | |
</div> | |
</figure> | |
<p id="tribute-info"> | |
<b> Here is a time line of Chimamanda N Adichie's work</b> | |
</p> | |
<ul> | |
<li>1998- Chimamanda’s play For <i>Love of Biafra</i> was published in Nigeria. She later dismissed it as “an awfully melodramatic play,” but it was among the earliest works in which she explored the war in the late 1960s between Nigeria and its secessionist Biafra republic.</li> | |
<br> | |
<li>2003- <i>Purple Hibiscus</i> was her written first novel while as a student at Eastern Connecticut State University.<i>Purple Hibiscus</i> garnered the Commonwealth Writers’ Prize in 2005 for Best First Book (Africa) and that year’s Commonwealth Writers’ Prize for Best First Book (overall). It was also short-listed for the 2004 Orange Prize (later called the Orange Broadband Prize and now the Baileys Women’s Prize for Fiction).</li> | |
<br> | |
<li>2006- <i>Half of a Yellow Sun</i> was a highly successful novel.The novel became an international best seller and was awarded the Orange Broadband Prize for Fiction in 2007. Eight years later it won the “Best of the Best” Baileys Women’s Prize for Fiction, a special award for the “best” prizewinner from the previous decade.</li> | |
<br> | |
<li> 2008- Chimamanda received a MacArthur Foundation fellowship. The following year she released <i>The Thing Around Your Neck</i>, a critically acclaimed collection of short stories.</li> | |
<br> | |
<li>2013- <i>Americanah</i> centres on the romantic and existential struggles of a young Nigerian woman studying (and blogging about race) in the United States.</li> | |
<br> | |
<li>2014- <i>We Should All Be Feminists</i> was part her nonfiction novel, which was adapted from her TEDx talk in 2012;parts of the speech were also featured in Beyoncé’s song “Flawless” (2013).</li> | |
<br> | |
<li>2017- <i>Dear Ijeawele, or A Feminist Manifesto in Fifteen Suggestions</i> was published.</li> | |
<br> | |
<li>2021- <i>Notes on Grief</i> was written by Chimamanda in which she mourned his passing and celebrated his life.</li> | |
</ul> | |
<a id="tribute-link" target="_blank" href="https://www.britannica.com/biography/Chimamanda-Ngozi-Adichie">Click here to learn more about her.</a> | |
</div> |
This file contains hidden or 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
// !! IMPORTANT README: | |
// You may add additional external JS and CSS as needed to complete the project, however the current external resource MUST remain in place for the tests to work. BABEL must also be left in place. | |
/*********** | |
INSTRUCTIONS: | |
- Select the project you would | |
like to complete from the dropdown | |
menu. | |
- Click the "RUN TESTS" button to | |
run the tests against the blank | |
pen. | |
- Click the "TESTS" button to see | |
the individual test cases. | |
(should all be failing at first) | |
- Start coding! As you fulfill each | |
test case, you will see them go | |
from red to green. | |
- As you start to build out your | |
project, when tests are failing, | |
you should get helpful errors | |
along the way! | |
************/ | |
// PLEASE NOTE: Adding global style rules using the * selector, or by adding rules to body {..} or html {..}, or to all elements within body or html, i.e. h1 {..}, has the potential to pollute the test suite's CSS. Try adding: * { color: red }, for a quick example! | |
// Once you have read the above messages, you can delete all comments. |
This file contains hidden or 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://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> |
This file contains hidden or 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
body {background: black; | |
color: #fff; | |
font-family: sans serif;} | |
#img-caption {width: 300px;} | |
#image { max-width: 100%; | |
height: auto; | |
margin: auto; | |
display: block;} | |
#main{ padding: 15px; | |
margin: 30px 9px; | |
border-radius: 5px; | |
background: teal;} | |
#title {text-align: center;} | |
#img-caption {padding:5px 25px 20px; | |
text-align: center; | |
position: relative; | |
margin: auto;} | |
#tribute-info {text-align: center;} | |
#img-div {padding: 5px;} | |
a {color: white;} | |
a:hover {color: #000;} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment