+ 2
How can i create an unordered list with 2 column?
I want to create an unordered list with two column with HTML. Please tell me the codes in HTML. Example- my code: <ul> <li>A</li> <li>B</li> <li>C</li> <li>D</li> <li>E</li> <li>F</li> </ul> Desired output: A B C D E F
8 ответов
+ 4
<style>
<!--for placing css code in html page-->
</style >
Else you can make a css file (External CSS)
for that you may have to provide a link to the file in
<head>
<link rel="stylesheet" href="yourfilename.css" />
</head>
+ 5
You're welcome Saurabh Kumar
+ 4
There's another way to provide styling in the tag itself I won't suggest that as it's quite confusing sometimes //especially when you have to do lots of styling
+ 3
https://stackoverflow.com/questions/14745297/how-to-display-an-unordered-list-in-two-columns
Have a look at this! 👍
+ 3
I don't think it might be possible with pure html... 🤔You may use table instead
+ 1
I have already watched this but it has to use both html+ css $hardul B
+ 1
$hardul B so how can i add css code in html?
+ 1
Thanks $hardul B