Web page Create: 'target' attrib needs Transitional DOCTYPE
Posted: Fri Apr 11, 2008 2:59 am
The "_Default - Frame" template (XnView 1.93.4) for thumb.html declares a strict HTML 4.01 DOCTYPE that is incompatible with its use of the attribute 'target' for the 'A' elements it generates. (Try running a created thumb.html through the W3C validator at <http://validator.w3.org/>.)
What's needed here instead is an HTML 4.01 Transitional DOCTYPE (which allows the 'target' attrib) declaration:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
What's needed here instead is an HTML 4.01 Transitional DOCTYPE (which allows the 'target' attrib) declaration:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">