Helpppp HTML | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 3

Helpppp HTML

I have this quiz, to write a list. I write these two answers, and its says I am wrong! <ul> <li>list </li> </ul> <il> <li>list2 </li> </il>

8th Jun 2018, 10:53 AM
Snowflake C
Snowflake C - avatar
2 ответов
+ 13
Snow C there is no html tag <il> either <ol> for ordered list or <ul> for unordered list and <li> list names <il> is wrong
8th Jun 2018, 10:57 AM
Mohammad Amir Aqeel
Mohammad Amir Aqeel - avatar
+ 15
It is like this: <ul> <li>list</li> <li>list2</li> </ul> Note: It is an unordered list.
9th Jun 2018, 3:16 AM
JTLZ