First, make sure you have added an xml namespace to the HTML tag of your doc ->
<html xmlns:fb="https://www.facebook.com/2008/fbml">
Second, the code you provided is missing an opening '<' tag, so it should be ->
<fb:comments href="https://www.facebook.com/pageadresse" num_posts="8" width="500"></fb:comments>
Third, you don't need to put it in a <div id="fb-root"></div>, the fb-root div is only needed somewhere on the page for the facebook js-sdk to work.
You can include the javascript sdk and the comment plugin all in one like this ->
<script>(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));</script>
<fb:comments href="https://www.facebook.com/pageadresse" num_posts="2" width="500">
</fb:comments>
More info here -> http://developers.facebook.com/docs/reference/plugins/comments/