Sure this is possible. Webmasters do it a lot when migrating from html to php. But remember that hotlinking to html pages is not very common. Besides, the images, zip, mp3s, etc are what really eat up bandwidth.
The first thing to do is to remove the .htm and .html extentions from the first rule rewrite because we want a different outcome.
So the rewrite is split:
RewriteRule \.(gif|jpg|jpe?g|bmp)$ - [NC,F]
RewriteRule \.(htm|html)$
http://www.example.co.uk/freeloaders/index.html
So the full previous example with the changes:
-----------------------------------------------------------------------
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?example\.co\.uk [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?example2\.co\.uk [NC]
RewriteRule \.(gif|jpg|jpe?g|bmp)$ - [NC,F]
RewriteRule \.(htm|html)$
http://www.example.co.uk/freeloaders/index.html
-----------------------------------------------------------------------
Note: The redirect needs to be a fully qualified URL.

But this brings us back the idea of which directory to put this .htaccess file into. If you put this in the root directory external requests for your top page would be directed to:
http://www.example.co.uk/freeloaders/index.html
This is probably not what you want. So... this might work better in the second level directories of this root directory. For example:
images/ (
http://www.mydomain.com/images/)
schedule/ (
http://www.mydomain.com/schedule/)
today/ (
http://www.mydomain.com/today/)
events/ (
http://www.mydomain.com/events/)
If you have content to protect in the root directory try a simplified version to protect just the images:
-----------------------------------------------------------------------
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?example\.co\.uk [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?example2\.co\.uk [NC]
RewriteRule \.(gif|jpg|jpe?g|bmp)$ - [NC,F]
-----------------------------------------------------------------------

Later you may have another webserver or a friend/associate who wants to hotlink to your site. You just add in a condition before the "RewriteRule" to allow them. In the example the HTTP_REFERERals for
http://www.friends.com/ would get through:
-----------------------------------------------------------------------
RewriteCond %{HTTP_REFERER} !^http://?friends?.*$ [NC]
-----------------------------------------------------------------------
You may also want to look through these articles if you want to get started into mod_rewrites:
http://www.yourhtmlsource.com/sitema...rewriting.html http://corz.org/serv/tricks/htaccess2.php
Cool tricks:
http://www.webpimps.com/scripts/htaccess/
Official Apache docs:
http://httpd.apache.org/docs/misc/rewriteguide.html