Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<title> My Bio Page </title>
</head>
<link rel="stylesheet" type="text/css" href="style.css">

<body>

<div class="header">
<h1> Tolani Ibikunle Bio</h1>
</div>

<div class="container">

<div class="intro">
<div class="image">
<img src="http://cdn.c.photoshelter.com/img-get/I00005djSpyMvFyI/s/900/900/NCAA-092112-1345-MS.jpg">
</div>
<p>
My name is Tolani Ibikunle. I was born in Monclair, New Jersey. I then moved to
Lower Merion Pennslyvania in 7th grade. I have always loved to play sports. I have two brothers.
I am in the middle. I went to Saint Joseph's Prepin Phiadelphia. I graduated from the prep and
headed to Wake Forest Univeristy on an athletic scholarship. I played soccer there for 3.5 years, graduated early
with an Economics degree and had the forunte of getting drafted to MLS. I played professional for a few years both here
and overseas. Now I am here at zipcode chasing a differnt dream!
</p>
</div>

<div class="faves">
<h3>A Few of My Favorites:</h3>
<ul>
<li> Dogs</li>
<li> Reading</li>
<li> Working Out</li>
<li> Traveling</li>
</ul>
</div>
</div>

</body>
</head>

</html>
<!DOCTYPE html>
<!DOCTYPE html>
35 changes: 35 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
body {
box-sizing: border-box;
font-family: Verdana, sans-serif;
line-height: 1.5em;
padding: 0;
margin: 0;
}
img {
max-width: 50%;
height: auto;
margin-left: auto;
margin-right: auto;
}
.image {
margin-top: -20px;
text-align: center;
}
.container {
max-width: 700px;
margin: 0 auto;
}
.header {
text-align: center;
background: #770;
color: #fefefe;
padding: 50px;
}
.header h1 {
margin: 0;
}
.intro {
}
.faves {

}