Html List | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 9

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 Respuestas
+ 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