I tried to change the color of the text in the submit button type but, I don\'t know why I am not able to change it.
<button id="fwdbtn" style="color:red">Submit</button>
Use this CSS:
color: red;
that's all.
.btn{
font-size: 20px;
color:black;
}
you try this:
<input type="submit" style="font-face: 'Comic Sans MS'; font-size: larger; color: teal; background-color: #FFFFC0; border: 3pt ridge lightgrey" value=" Send Me! ">
<input type = "button" style ="background-color:green"/>
.button
{
font-size: 13px;
color:green;
}
<input type="submit" value="Fetch" class="button"/>