Skip to content

Instantly share code, notes, and snippets.

@sachinchatterG
Created November 13, 2018 19:28
Show Gist options
  • Save sachinchatterG/c750b46e9c8d5ec4824bd6636ce132aa to your computer and use it in GitHub Desktop.
Save sachinchatterG/c750b46e9c8d5ec4824bd6636ce132aa to your computer and use it in GitHub Desktop.
Tribute Page: Sardar Vallabhbhai Patel
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<div id="main">
<header><h1 id="title">SARDAR VALLABHBHAI PATEL</h1>
<h3>The IRON MAN of India.</h3>
</header>
<div id="img-div">
<img id="image" src="https://images.news18.com/ibnlive/uploads/2018/10/Statue-of-Unity-58.jpg" alt="Statue Of Unity of Sardar Vallabhbhai Patel">
<div id="img-caption">
<h3>The <u>Statue Of Unity</u> made in The Honour of Sardar Vallabhbhai Patel.</h3>
</div>
</div>
<div id="tribute-info">
<h3>Here's a Timeline of Sardar Vallabhbhai Patel's Life...</h3>
<ul type="sphere">
<li><b>1875</b>-Born in Nadiad, Gujarat</li><br>
<li><b>1893</b>-Got Married to Jhaverba of Gana Village at age 18</li><br>
<li><b>1901</b>-Became a District Pleader and started Practising at Godhra Court.</li><br>
<li><b>1910</b>-Vallabhbhai went to England to join Middle Temple to became Barrister in August </li><br>
<li><b>1914</b>-Started his practice a mainly as a criminal Lawyer in Ahmedabad India.</li><br>
<li><b>1915</b>-Became member of Gujarat Sabha which later became Gujarat Prantic Samiti Gujarat Sabha nominated him as delegate to attend Indian National Congress meeting in Mumbai </li><br>
<li><b>1917</b>-He was elected as member in Ahmedabad Municipality on 5/1/1917 from Dariyapur ward by one Vote. This was his first Political institution election. This election was challenged and cancelled. He was elected again as a uncontested member on 14 May, 1917 and became chairman, of Sanitary Committee.
First Conference was held in Godhra under chairmanship of Gandhi and Vallabhbhai was appointed as Secretary. They worked against forced labour.</li><br>
<li><b>1918</b>-He led the Kheda Satyagraha which resulted in a Victory (29 th June). Satyagraha Ends. Victory celebration in Nadiad</li><br>
<li><b>1920-21</b>-Congress won most of the municipal seats in Ahmedabad due to Vallabhbhai’s efforts.
Vallabhbhai moved the resolution in Ahmedabad Municipality to place a statue of Tilak Maharaj in Victoria Garden on 10/1/1921.</li><br>
<li><b>1923</b>-On 3rd September, Master minded Nagpur Flag satyagraha and upheld the right to Honour National Flag</li><br>
<li><b>1924</b>-Vallabhbhai won majority for congress in A.M.C. and was elected its president.</li><br>
<li><b>1927</b>-Gujarat faced unprecedented floods. Tirelessly went round.Organised extensive relief works.</li><br>
<li><b>1928</b>-Galvanized peasants of Bardoli to protest against arbitrary increase in land revenue and launched a satyagraha.Peasants did not yield to coercion even though Government confiscated their land, property, crops and cattle. Government had to yield to the demand for appointment of an Inquiry Committee to review increased land revenue and protest was successful.
Vallabhbhai was named as Sardar, the leader, in hearts of people.
</li><br>
<li><b>1930</b>- Vallabhbhai was arrested at Ras (village near Anand) when he began his march to rouse conscience of people in favour of Gandhiji’s historic Dandi March.</li><br>
<li><b>1931</b>- President, Indian National Congress, Karachi. Praised Bhagat Singh, Sukhdeo and Rajguru.</li><br>
<li><b>1938</b>-Made settlement between Thakore Saheb of Rajkot and State Praja Parishad, amid several problems.</li><br>
<li><b>1947</b>-Persuaded princely states to sign Standstill Agreement and Instrument of Accession within a short period of six week. Thus he integrated the country as one nation. India became one nation for the first time in history.<br>
India achieved independence. Sardar sworn in as Home Minister and Deputy Prime Minister.
</li><br>
<li><b>1950</b>- Died at the age of 75.</li>
</ul>
<h3>Manpower without Unity is not a strength unless it is harmonized and united properly, then it becomes a spiritual power.</h3><h2>-Sardar Vallabhbhai Patel</h2><br><br>
If you have time, you should read more about this incredible human being on his <a href="https://en.wikipedia.org/wiki/Vallabhbhai_Patel" target="_blank" id="tribute-link">Wikipedia entry</a>.
</div>
</div>
// !! 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.
#title{
text-align:center;
font-family:ALGERIAN;
}
header{
background-color:hsl(0,0%,80%);
text-align:center;
padding:20px;
margin-bottom:50px;
}
#image{
max-width:800px;
border-color:black;
border-width:5px;
border-style:solid;
border-radius:20px;
display:block;
margin:auto;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 16px 16px rgba(0,0,0,0.23);
}
#img-caption{
text-align:center;
}
#tribute-info{
text-align: center;
background-color:hsl(0,0%,85%);
font-family:Arial;
margin-top:50px;
padding:10px;
}
ul{
display:inline-block;
text-align:left;
margin-left:200px;
margin-right:200px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment