I am trying to use an HTML form to submit a color value.
<form>
Font color:<br>
<input type="color" name="colorInput">
<input type="submit" value="Submit">
</form>
I then want to have the color value to replace another value for font color in CSS:
textarea {color: #fff;}
I'm new and have little experience with coding.
Thank you in advance!