Here is my jsfiddle, and i have a very basic question. http://jsfiddle.net/DQL2U/
Why there is a small space between three tabs (home, about me, contact)? What can I do to make them look joined each other? I see this is a problem that encountered often, but couldnt find a solution.
<!DOCTYPE html>
<html>
<head>
<title>
Burak Özmen - A Newbie Web Designer
</title>
<link rel="stylesheet" href="index.css"/>
</head>
<body>
<nav>
<a href="http://www.facebook.com">
<div id="home">
<p>Home</p>
</div>
</a>
<a href="">
<div id="about">
<p>About Me</p>
</div>
</a>
<a href="">
<div id="contact">
<p>Contact</p>
</div>
</a>
</nav>
</body>
</html>