Hi!
I'm really a raw beginner. Just wanted to know how to adapt this code so that the word April Blue turns blue everytime it shows up on the page. Thanks for your help:
Code:
<html>
<head>
<title>April Blue</title>
</head>
<body>
When you do this, only one instance of the string April Blue within the script tags turns blue.<br>
<script language= "JavaScript">
var TextString= "April Blue";
TextString.fontcolor("#0000FF")
document.write(TextString.fontcolor("#0000FF"))
</script><br>
How do I make all instances of April Blue turn into blue automatically?
</body>
</html>
Hope it's not too complicated! Thank you.