how to set a colour for input type radio in html without using CSS, is it possible to make something like:
<input type="radio" color"red"></input>
how to set a colour for input type radio in html without using CSS, is it possible to make something like:
<input type="radio" color"red"></input>
<input type="radio" style="color:red;"/>
Like this but it is not recommanded. Listen to those comments and include the css in a separate file.