0

How to do this

At HTML basics Iā€™m stuck at question 2 of The ā€œmy skillsā€ can anybody help me?

24th Nov 2017, 5:02 AM
Daniel Nay Myo win
Daniel Nay Myo win - avatar
5 Answers
0
don't see a question 2...?
24th Nov 2017, 5:13 AM
Mind To Machine šŸ’»šŸ•†
Mind To Machine šŸ’»šŸ•† - avatar
0
Oh I mean question 1
24th Nov 2017, 5:14 AM
Daniel Nay Myo win
Daniel Nay Myo win - avatar
0
Html in question 1 #2 html then /head
24th Nov 2017, 5:55 AM
Judee Worst
Judee Worst - avatar
0
Question #3 is 1st html then head then body then html
24th Nov 2017, 5:57 AM
Judee Worst
Judee Worst - avatar
0
basicaly, you are creating an unordered list containing your skills on sololearn. to create and unordered list first of all you write the <ul></ul> tags between those write <li></li> tag ; equal it to the amount of things you want in list <ul> <li></li> <li></li> </ul> think of it like a closet, the frame (<ul></ul>) with the individual shelves(<li></li>) In an unordered list, the order of the list items is not significant. You can swap two items or reverse the whole list, and it still means the same thing. In an ordered list, the order of the list items is important. If you change the order, the meaning of the whole list changes. Example of an unordered list: HTML Code: <h2>List Types</h2> <ul> <li>Definition list</li> <li>Ordered list</li> <li>Unordered list</li> </ul> It simply lists the three types of list elements in HTML. If I'd put 'Unordered list' first, it wouldn't change the meaning of the list as a whole. Example of ordered list: HTML Code: <h2>Battery Replacement</h2> <ol> <li>Open cover of battery compartment</li> <li>Remove old batteries</li> <li>Insert new batteries</li> <li>Replace cover</li> </ol> In this case, I cannot change the order of the list items without changing the meaning of the whole list.
24th Nov 2017, 5:57 AM
Mind To Machine šŸ’»šŸ•†
Mind To Machine šŸ’»šŸ•† - avatar