Witam, na mojej stronie stworzyłem takie coś:

Tylko, że ilekroć uzyskać taki efekt:

wychodzą mi błędy (ogulnie w stylu, że 2 FB jest potczepiony do 1)
Kody:
HTML:
<!DOCTYPE HTML>
<html lang="pl">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title></title>
<meta name="description" content="Opis w Google" />
<meta name="keywords" content="słowa, kluczowe, wypisane, po, porzecinku" />
<link rel="stylesheet" href="naszestrony.css" type="text/css" />
<link href='https://fonts.googleapis.com/css?family=Lato|Josefin+Sans&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/fontello.css" type="text/css" />
</head>
<body>
<div id="kontener">
<div id="logo">
Nasze strony
</div>
<div class="opowiesc">
Opowieść 1
</div>
<div class="fb">
FB
</div>
</div>
</body>
</html>
body
{
background-color: #303030;
color: #ffffff;
font-family: 'Lato', sans-serif;
font-size: 20px;
}
#kontener
{
width: 1000px;
margin-left: auto;
margin-right: auto;
}
#logo
{
font-size: 70px;
font-family: 'Josefin Sans', sans-serif;
text-align: center;
}
.opowiesc
{
font-size: 40px;
text-align: center;
margin-top: 10px;
background-color: #555555;
width: 800px;
float: left;
}
.fb
{
background-color: #4668b3;
text-align: center;
}