0
<html> <body> <h2>Some <span style="color:red">Important</span> <span style="colour:pink">m
will this code will print "message" in pink colour if its wrong what would be the correct code. plz help!!!
1 Answer
+ 12
<html>
<body>
<h2> Some
<!--pink color red-->
<span style="color:red">Important</span>
<!--pink color #hex-->
<span style="color:#ffc0cb">message</span>
</h2>
</body>
</html>