The error essentially says everything and if you don't understand it, Microsoft's documentation writes the errors out in a bit better English, just search for it.
error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in Source.obj
The SFML libraries you are trying to link are built with the static release version of the runtime lib, while you try to link the dynamic debug libs. Thus they are incompatible, thus they don't link.
Build from source and follow the tutorial. Don't mix static and dynamic libs and don't mix debug and release modes.