Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

British english or American english, HTML

I was writing code and tried to align image in centre(spelled in british english)

align='centre'

above didn't work!!

There is no spelling mistake, above spelled word meaning is "middle"

when I wrote

align='center'

it worked, Does this mean HTML is written in "American English"?

EDIT after reading comments,

The thing I was worried about is, What if a developer from British background writes a renderer for web browsers such as gecko.

Does W3C or any other organisation has standard or protocol to constraint all developers to make sure they must use american english while they develop any sort of interpreter?

like image 832
TeaCupApp Avatar asked Sep 06 '11 13:09

TeaCupApp


1 Answers

Does this mean HTML is written in "American English"?

Yes.

 align = left|center|right [CI]

However, using the align property is deprecated - consider using CSS's text-align.

like image 66
Pekka Avatar answered Oct 01 '22 17:10

Pekka