To control how your web page will look on Facebook use facebook open graph markup. To check how your web page will look on facebook before actually posting it use Open Graph Object Debugger Sharing Debugger.

One my example of facebook open graph:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">

	<head>
		<meta property="og:title" content="test" />
		<meta property="og:url" content="http://www.milosev.com/gallery/index.html" />
		<meta property="og:image" content="http://www.milosev.com/gallery/20180911_202614.jpg" />
		<meta property="fb:app_id" content="2128533190490272" />
		<meta property="og:description" content="Yo! This is a test!" />

	</head>
	
	<body>
	test
	</body>
	
</html>