My question is for input tags and when the type is a number Say I had a number
French
<input type="number" value="3,4">
English
<input type="number" value="3.4">
Notice how the page in french will not render the input tag because it the type is number but it is not a number in ENGLISH. Getting to my point, is ALL HTML attributes assumed in a standard HTML language (in English?).
When I create the input tag in HTML, would it have to be a 3.4 instead of 3,4?
And if my CultureInfo was set to French, will my browser display it as 3,4 on the page?