+ 1
Can someone tell is this the right code to make a colorful background in html?: <style=background-color: red;"</style>
Please Answer🙏🏻🙏🏻
3 ответов
+ 1
style tag is not properly used.
+ 1
Use inline css or style tag + selector element
// like this
<style >
h1 .... or any elemet u want {
Backgroud-color : red ;
}
</style >
+ 1
Thanks🙏🏻