I'm just beginning to learn CSS and today I received a school assignment:
Below is the HTML code provided:
<head>
<meta charset="UTF-8">
<title>ABC</title>
<style>
/* CSS section */
</style>
</head>
<body>
<p>ABC</p>
</body>
The task is to change the color of letter "A" to #ec407a, "B" to #ffb300, and "C" to #26a69a without altering the existing HTML code.
Any suggestions on how I can achieve this? Thank you!