OK, first you need to get clauses, i.e. break up the conjunctions so you are left with just disjunctions, giving you the clauses (the clauses are really just disjunctions ... think of the comma's as $\lor$'s ... but we don't show them as such so we can just work with the clauses as sets):
$\{ ¬In(x,Intersection(s,t)) , In(x,s)\}$
$\{ ¬In(x,Intersection(s,t)) , In(x,t) \}$
$\{ (¬In(x,s) , ¬In(x,t) , In(x,Intersection(s,t)) \}$
$ \{ In(f(s,t),s) , SubsetOf(s,t) \}$
$\{ ¬In(f(s,t),t) , SubsetOf(s,t) \}$
$\{ ¬SubsetOf(Intersection(c1,c2),c1) \} $
And now you have to keep picking two clauses that you can resolve, using unification to line up terms.
If you don't know what this means, I recommend looking it up ... but very roughly:
You can resolve any two clauses if one clause contains a statement $P$ and the other clause contains a statement $\neg P$, and the result will be one clause that is the union of those two clauses but with the $P$ and $\neg P$ removed/ E.g. $\{A,B\}$ resolves with $\{\neg B, C,D \}$ to $\{A,C,D\}$ (p.s. you can only resolve on one clause at a time ... a common mistake is that some think that $\{A,B\}$ resolves with $\{\neg A, \neg B, C,D \}$ to $\{C,D\}$ .. No!)
Unification is 'lining up the terms', e.g. if you have claim $P(x)$ in one clause, and $\neg P(c1)$ in another, then in order to resolve them, you first need to substitute $c1$ for all $x$'s in the second clause before resolving.
For example, you can resolve the last two clauses by setting $s$ to $Intersection(c1,c2)$, and $t$ to $c1$, giving you as the two clauses:
$\{ ¬In(f(Intersection(c1,c2),c1),c1) , SubsetOf(Intersection(c1,c2),c1) \}$
(p.s. to be clear: you don't get this as a clause to be added to your clause set, but this is just a temporary step during the resolution inference process )
and
$\{ ¬SubsetOf(Intersection(c1,c2),c1) \} $
So now you have $SubsetOf(Intersection(c1,c2),c1)$ in the first of these two clauses, and the negation of that in the second, meaning that we can resolve, the result of which is all the statements between the two clauses that are not that statement or its negation .. which is only $ ¬In(f(Intersection(c1,c2),c1),c1) $, so the resulting clause is:
$ \{ ¬In(f(Intersection(c1,c2),c1),c1) \} $
Keep doing this until you get the $\{ \}$ clause ... which is the 'empty clause' ... which represents a disjunction with 0 disjuncts ... which is a contradiction since if there are 0 disjuncts, then it is not true that at least of them is true.
So, resolution as an overall proof technique is really a proof by contradiction technique: negate the conclusion, add it to the premises, and try and derive a contradiction.
Here is the start of showing all this a little more formally (and I'll add a few more steps):
$\{ ¬In(x,Intersection(s,t)) , In(x,s)\}$ (given ... from A)
$\{ ¬In(x,Intersection(s,t)) , In(x,t) \}$ (given ... from A)
$\{ (¬In(x,s) , ¬In(x,t) , In(x,Intersection(s,t)) \}$ (given ... from A)
$ \{ In(f(s,t),s) , SubsetOf(s,t) \}$ (given ... from B)
$\{ ¬In(f(s,t),t) , SubsetOf(s,t) \}$ (given ... from B)
$\{ ¬SubsetOf(Intersection(c1,c2),c1) \} $ (negation of conclusion ... C)
$ \{ ¬In(f(Intersection(c1,c2),c1),c1) \} $ Resolution 5,6 with $Intersection(c1,c2)/s, c1/t$
$ \{ In(f(Intersection(c1,c2),c1),Intersection(c1,c2)) \} $ Resolution 4,6 with $Intersection(c1,c2)/s, c1/t$
$ \{ In(f(Intersection(c1,c2),c1),f(Intersection(c1,c2),c1)) \}$ Resolution 1,8 with $c1/s, c2/t, f(Intersection(c1,c2),c1)/x$