more like
ip access-list 101 extended name<cr>
permit tcp host 10.1.1.2 eq www any<cr>
deny ip 10.1.3.0 0.0.0.255 10.1.2.0 0.0.0.255<cr>
permit ip any any<cr>
^Z
this one allows only 1 host to access any address using port 80
denies anything on subnet 10.1.3.0 from accessing anything on 10.1.2.0
and allows all other communications
The big differnce is standard ACL's don't allow you to choose protocols as efficiently, and with eACL's you can reuire more perameters be matched exactly (my example is pretty basic and more advanced perameters exist however I'm also still learning eACL's, otherwise I woulda passed the exam 2 weeks ago right

)