html - steps of creating webpage in bangla -
language code bn http://www.w3schools.com/tags/ref_language_codes.asp?output=print
i have tried create page in bengali output ???????????
here have tried
<!doctype html> <html lang="bn"> <head> <title > ডোমেইন সার্ভিস </title> </head> <body> ডোমেইন সার্ভিস </body> </html>
would please let me know steps need create page in bengli.
the language code has nothing characters available you. used such things screen reader pronunciation dictionary selection, search engine filtering , automated translation services.
to use characters want need to:
- save document in character encoding supports characters want use. in general, should utf-8. how depends on choice of editor. if server side programming need ensure track encoding data in , keep in encodings support characters need. badly configured databases common way break encoding.
- tell browser encoding using. should done via
content-type
http response header. (content-type: text/html;charset=utf-8
). how set depend on web server using , if doing server side programming. should, additionally, specify encoding in document via meta element:<meta charset="utf-8">
.
Comments
Post a Comment