How do create "My Blog" on the HTML basics ? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

How do create "My Blog" on the HTML basics ?

Hey guys. Still working on the HTML module. I keep coming across the units where it's telling me to create my own blog using the skills I have learned. Am I meant to be using the code playground for that ? Or am i meant to be using a different software like' Microsoft Word' or something else ? Oh and while i'm here; can someone tell me the difference between <ul> and <ol> ? (like <ul> is an, unordered list but what is that ?) and what is <ol> ? Cheers for all the help guys :)

14th Jan 2018, 12:08 AM
harry
1 Antwort
+ 2
You must use an IDE (it could be sololearn code playground) or a plain text editor... Avoid use of word processing software such as Word, which bad handle plain text... <ol> stand for ordered list, meaning numerated one <ul> stand for unordered list, meaning bullet instead of count Try this, and see the difference: <ul> <li>item 1</li> <li>item 2</li> </ul> <ol> <li>item 1</li> <li>item 2</li> </ol>
14th Jan 2018, 12:16 AM
visph
visph - avatar