I am trying to create a Facebook Follow Button.
Include the JavaScript SDK on your page once, ideally right after the opening <body> tag.
Here is the code it wants me to put there.
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&appId=306802696062028&version=v2.0" ;
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
PROBLEM: I cant find where the <body> to be able to insert the code.
Your help is greatly appreciated.