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
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 !!!
+ 1
Right, it worked, thanks for answering!!đ