if i understand you correctly, you are looking to block all internet traffic coming in except for traffic from 4 servers on the internet
i take it that
1
all of your internal pc's should be able to go out to the Internet
2
you only want your employees to be able to access 4 web-sites
so you need to only allow return traffic from those 4 sites/servers
access-list 133 permit tcp host 1.2.3.1(server1) eq
established
access-list 133 permit tcp host 1.2.3.2(server2) eq
established
access-list 133 permit tcp host 1.2.3.3(server3) eq
established
access-list 133 permit tcp host 1.2.3.4(server4) eq
established
int ethernet 0 (or whatever your outside int is)
ip access-group 133 in
this allows any only return traffic for those 4 servers on the Internet. if you want them to access other services on those servers (i.e. https(tcp 443), etc, you will have to add acl entries permitting those ports)
(caution: if you are using dhcp and allow for icmp on that outside interface make sure that you add the appropriate acl statements)