+ 2
How do u make a text glow witha particular color in HTML
4 Antworten
+ 2
Heres example of infinite glowing text:
https://code.sololearn.com/WaGwpTQzt3CR/#html
Found the answer here. Feel free to check out:
https://www.w3schools.com/css/css3_animations.asp
I would like to here if this solved your problem ☺
+ 1
How??
+ 1
Hi isaiah amo mensah, you can highlight text with tje following tag or CSS
<mark> text will hightlight </mark>
or via CSS
#text {
width: width of your text;
height: height of your text;
background-color: yellow;
}
Hope this will help your question😉