I wanted to look at integrating the Facebook 'Like' button on individual nodes (including a list of nodes using views). I ran across a few resources and found a good starting point. My approach embeds the code within node-{content type}.tpl.php.
Find and open the node.tpl.php file in your theme folder. If you want to add the like button to each and every node, then edit this file. If you want to add it to certain content types, then you can open that specific node.tpl.php file or simply copy this file and rename to node-{insertContentTypeHere}.tpl.php (for a content type of Video, your file will be named node-video.tpl.php. If that was confusing to you, leave a comment and I'll try to explain further.
We will want to insert the code above between <div class="content"> and <?php print $content ?>
Save and upload your modified file to your server.
You can test it out on using the LIKE button on the top right of this post. Go ahead, give it a shot!
The Facebook like button has two color options. Light and Dark. You can switch by modifying the code above from colorscheme=light to colorscheme=dark.