SO http://bit.ly/1lZCkEF
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home Page</title>
<meta charset=<utf-8">
<link rel="stylesheet" type="text/css" href="homePagecss.css">
<div class="row">
<div class="column left" style="background-color:#DAD335;">
<p>"Float like a butterfly, sting like a bee. His hands can't hit what his eyes can't see. Now you see me, now you don't. George thinks he will, but I know he won't." - Muhammad Ali</p>
<p>"Service to others is the rent you pay for your room here on earth." - Muhammad Ali</p>
<p>"Don’t count the days; make the days count." - Muhammad Ali</p>
<p>“I’ve wrestled with alligators. I’ve tussled with a whale. I done handcuffed lightning. And throw thunder in jail.” - Muhammad Ali</p>
</div>
<div class="column middle" style="background-color: black;color:white;">
<img src="muhammad ali.jpg" alt="Muhammad Ali">
<h2 style="font-size:72px;"><center>Muhammad Ali</center></h1></h2>
<ul id="linkpages"><a href="homePage.html">Home Page</a>
<a href="aboutHim.html">About Him</a>
<a href="fights.html">Famous Fights</a>
<a href="helped.html">Helped</a>
<a href="center.html">Muhammad Ali Center</a>
</ul>
<p id=info><center>(Info about Muhammad Ali)</center></p>
</div>
<div class="column right" style="background-color:#DAD335;">
<p>“If my mind can conceive it, and my heart can believe it then I can achieve it." </p>
<p>"I am the greatest, I said that even before I knew I was."</p>
<p>"I'm so mean, I make medicine sick."`</p>
<p>“I hated every minute of training, but I said, ‘Don’t quit. Suffer now and live the rest of your life as a champion.'”</p>
</div>
</div>
</body>
CSS
#info{
font-size: 32px;
}
a{
color: #DAD335;
}
#linkpages{
text-align: center;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
}
.column {
float: left;
padding: 10px;
height: full;
}
.left, .right {
text-align: center;
width: 15%;
font-style: italic;
}
.middle {
width: 70%;
}
.row:after {
content: "";
display: table;
clear: both;
}