Html List | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 10

Html List

So my question is How to get list-style-image property's ( url ) how to get the url of any emojis โ”

25th Feb 2024, 1:54 AM
~AYUSH~[Less Active ๐Ÿ“š๐ŸŽ’]
~AYUSH~[Less Active ๐Ÿ“š๐ŸŽ’] - avatar
9 Answers
+ 4
why would you make a url of that? an emoji is a utf-8 character. https://www.w3schools.com/html/html_emojis.asp#:~:text=Emojis%20look%20like%20images%2C%20or,and%20symbols%20in%20the%20world. you can just add them to your html. But they might appear differently on different devices and might not even appear if the device does not have the font support for them. or maybe you mean a list of links with clickable emojis? <style> a{all:unset;} </style> <ul style="list-style:none;"> <li><a href="https://www.w3schools.com/html/html_emojis.asp#:~:text=Emojis%20look%20like%20images%2C%20or,and%20symbols%20in%20the%20world.">๐Ÿ’ ๐ŸŒน๐Ÿฅ€๐ŸŒบ๐ŸŒท</a> </li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/all">๐ŸŒธ๐Ÿ’ฎ๐Ÿต๏ธ๐ŸŒผ๐Ÿชท</a> </li> </ul> emojis by themselves have no urls...they're just symbols.
25th Feb 2024, 6:23 AM
Bob_Li
Bob_Li - avatar
+ 9
Thanks a lot
25th Feb 2024, 4:31 AM
~AYUSH~[Less Active ๐Ÿ“š๐ŸŽ’]
~AYUSH~[Less Active ๐Ÿ“š๐ŸŽ’] - avatar
+ 7
Thanks but can anyone explain me url stuff โ”
25th Feb 2024, 3:07 AM
~AYUSH~[Less Active ๐Ÿ“š๐ŸŽ’]
~AYUSH~[Less Active ๐Ÿ“š๐ŸŽ’] - avatar
+ 7
Well bro u didn't understand my question My question was Like this is the emoji (๐Ÿ’) I want to use this as list So how to make url of that โ”๐Ÿ˜•
25th Feb 2024, 5:03 AM
~AYUSH~[Less Active ๐Ÿ“š๐ŸŽ’]
~AYUSH~[Less Active ๐Ÿ“š๐ŸŽ’] - avatar
+ 7
Ok thanks now I got it ๐Ÿ˜Š
25th Feb 2024, 8:03 AM
~AYUSH~[Less Active ๐Ÿ“š๐ŸŽ’]
~AYUSH~[Less Active ๐Ÿ“š๐ŸŽ’] - avatar
+ 7
Thanks bro u gave a lot of information nd study material โ™ฅ๏ธ๐Ÿคฉ I'm really thankful to you ๐Ÿ”ฅ
25th Feb 2024, 8:48 AM
~AYUSH~[Less Active ๐Ÿ“š๐ŸŽ’]
~AYUSH~[Less Active ๐Ÿ“š๐ŸŽ’] - avatar
+ 6
if you just want to replace the li bullets with emojis, you can do <style> .smile{ list-style-type:none; } .smile li:before{ content:"๐Ÿ˜ "; } </style> <ul class="smile" > <li>emoji</li> <li>bullets</li> </ul>
25th Feb 2024, 2:23 AM
Bob_Li
Bob_Li - avatar
+ 4
Hi
25th Feb 2024, 4:30 PM
Ali Bouazizi
Ali Bouazizi - avatar