0

i did not understand the different between the <outside and inside>

10th May 2020, 10:06 PM
Taima Alfokaha
Taima Alfokaha - avatar
3 Answers
+ 2
Taima Alfokaha hi, What do you mean with <outside inside> ? Do you have an example of code or something ? Is this about list, like <ol> <ul> <li> ?
10th May 2020, 11:15 PM
EmmanueLZ.
EmmanueLZ. - avatar
0
yes I meant the second one,about the list .
11th May 2020, 1:06 AM
Taima Alfokaha
Taima Alfokaha - avatar
0
So, when you make a list you have choice,you can either make one with : number -> ordered list-> <ol> or with dot or other sign -> unordered list -> <ul> These tags will indicate you start a list of the type ol or ul and they will be the container of your items, so inside (nested) you will put each item of your list -> <li> So for example with an unordered list you'll have: <h3>my list of tasks<\h3> <ul> <li>task 1</li> <li>task2</li> <\ul> and your output will be: my list of tasks •task1 •task2 Is that answering your question ?
11th May 2020, 2:13 AM
EmmanueLZ.
EmmanueLZ. - avatar