What does http-equiv stands for?
Many web developers uses meta http-equiv tag, without solid understanding what does it means.
http-equiv stands for: hypertext transfer protocol equivalent and is equivalent to HTTP response header.
So putting:
in HTML as meta TAG has the same effect as declaring HTTP response header
http-equiv stands for: hypertext transfer protocol equivalent and is equivalent to HTTP response header.
So putting:
<http-equiv="content-type" content="text/html; charset=UTF-8">
<META http-equiv="content-type" content="text/html; charset=UTF-8">
in HTML as meta TAG has the same effect as declaring HTTP response header
Content-Type: text/html; charset=utf-8
Comments