It doesn’t seem like it will affect your second paragraph, but it is wrong and might be confusing the code checker, to be sure, you should remove all of that unexpected styling that you have added to the <head> ... </head>
element.
didn’t work what can be happening??
Please copy your code, and paste it all in here – don’t take a screen shot because then I will not be able to copy and paste your code to test it.
How to post code in this forum.
-
Poll: Code editors
-
Poll: New courses
Please correct it
<!DOCTYPE html>
<html>
<head><h1 style="color:green; font-size:16px">
<title>Changing the colors!</title>
</h1>
</head>
<body>
<h1 style="color:green;font-size: 16px">Big Heading</h1>
<p style="color:violet"> A giant bear and a little duck were friends.</p>
<p style="color:red; font-size:10 px">But the bear got hungry and ate the duck.</p>
</body>
</html>
Remove the h1 styles here. and the h1 in general from here what should be left is
<head>
<title> Changing the colors! </title>
</head
Not sure as to why that error message is coming through. Remove what I’ve told you to and it should work,
if not report back here the new error message.
thank you now it’s solved