use multiple ifs if they are right for the situation or use else clauses if they are right. There is no right or wrong. You will soon see when you write code that there are uses for both constructs.
Remember that else introduces a second choice.
your basically choosing between

if(something) choice 1

or

if (something) choice 1
else choice2