0

Why This Code Is not Working???

<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1><span background-color:red; color:white>Contect Me Here</span></h1> </body> </html> This is not html5 it's just simple HTML

5th May 2019, 10:37 AM
Himanshu Rai
Himanshu Rai - avatar
2 Answers
+ 14
You forgot to add the style attribute in the span element . This will work : <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1><span style=" background-color:red; color:white">Contect Me Here</span></h1> </body> </html> Hope this helps !!!
5th May 2019, 10:58 AM
Nova
Nova - avatar
+ 1
Right, it worked, thanks for answering!!😊
5th May 2019, 11:02 AM
Himanshu Rai
Himanshu Rai - avatar