0
How to do this
At HTML basics Iām stuck at question 2 of The āmy skillsā can anybody help me?
5 Answers
0
don't see a question 2...?
0
Oh I mean question 1
0
Html in question 1 #2 html then /head
0
Question #3 is 1st html then head then body then html
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.