Unfortunately, I'll have to ask the obvious question: is freeglut.lib located where it's supposed to be and are you pointed to the right directory?
Your error says Dependencies\freeglut.obj, but if you were following the tutorial freeglut should be in Dependencies\freeglut. Another common mistake on Windows is using a full file path that has spaces (C:....My Documents...), but not putting the whole file path in quotes. The linker gets tripped up by that.
EDIT: I'm guessing I was voted down since I didn't notice the more obvious problem that your linker is looking for a freeglut.obj, which you don't have. Make sure you're calling it freeglut.lib.
Conceptually, here's what happening, and this may help you troubleshoot:
When you write a cpp file and compile it, it's turned into an obj file. The compiler doesn't need to know everything. You can declare a function that returns an int and takes a bool as an argument, and use it in your code and the compiler says "ok, if you say so."
Your program will probably have several cpp files, and hence several obj files. After compilation, the obj files are linked together and form your executable. If anything goes wrong here (it has!) it's a linker error. The linker says "ok, you say you're using this function...where is it?"
You've obtained lib files. In this case, they are static libraries, essentially a container for a bundle of obj files, no different than if you had written all of the freeglut functions and classes yourself and compiled them. The linker wants to link them. For code that you write and compile, Visual Studio makes sure everything ends up in the right folder and that it looks in the right place. For compiled object files coming from somewhere else? It has no way of knowing, so you have to tell VS two things: What folder the libraries are in, and what the names of the library files are. Then the linker knows where to look, and what it's looking for.
Somewhere along the line you put the files in the wrong place, or told VS the wrong location, or the wrong files, or some combination. OR you've done something like have spaces in a file path without quotes. Another common error is mixing different platforms. x86 (i.e., 32 bit) and x64 object files are different, and if your linker is looking for one type, it won't understand the other. Your download provided the libraries for different platforms, and VS lets you choose a target platform. Make sure everything is the same.