CHANGE COLOR OF TEXT IN PLACEHOLDER TEXTAREA
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
<style>
   textarea::placeholder {
	  color: #0000ff; /*hexcode to change color of placeholder */
}
</style>
</head>
<body>
   <h2> Change placeholder text color</h2>
   <textarea placeholder="type here"></textarea>
</body>
</html>