Mercurial > hg > Aquinas
diff dtd/html-img.mod @ 0:bca6df27dbfd
mostly unchanged from http://www.cc.org/dtd
| author | ht |
|---|---|
| date | Sat, 19 Jan 2008 22:54:40 +0000 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dtd/html-img.mod Sat Jan 19 22:54:40 2008 +0000 @@ -0,0 +1,65 @@ +<!-- + This is the img DTD for Voyager. + + Copyright (c) 1998 W3C (MIT, INRIA, Keio), All Rights Reserved. + + Author: Dave Raggett <dsr@w3.org> +--> + + <!--=================== Images ===========================================--> + + <!-- + To avoid accessibility problems for people who aren't + able to see the image, you should provide a text + description using the alt and longdesc attributes. + In addition avoid the use of server-side image maps. + --> + + <!ENTITY % img.extra ""> + + <!ELEMENT img EMPTY> + <!ATTLIST img + %attrs; + src %URI; #REQUIRED + alt %Text; #REQUIRED + longdesc %URI; #IMPLIED + height %Length; #IMPLIED + width %Length; #IMPLIED + usemap %URI; #IMPLIED + ismap (ismap) #IMPLIED + author CDATA #IMPLIED + copyright CDATA #IMPLIED + %img.extra; + > + + <!-- USEMAP points to a MAP element which may be in this document + or an external document, although the latter is not widely supported --> + + <!--================== Client-side image maps ============================--> + + <!-- These can be placed in the same document or grouped in a + separate document although this isn't yet widely supported --> + + <!ELEMENT map ((%block; | %misc;)+ | area+)> + <!ATTLIST map + %attrs; + name CDATA #REQUIRED + > + + <!ENTITY % area.extra ""> + + <!ELEMENT area EMPTY> + <!ATTLIST area + %attrs; + shape %Shape; "rect" + coords %Coords; #IMPLIED + href %URI; #IMPLIED + nohref (nohref) #IMPLIED + alt %Text; #REQUIRED + tabindex %Number; #IMPLIED + accesskey %Character; #IMPLIED + onfocus %Script; #IMPLIED + onblur %Script; #IMPLIED + %area.extra; + > +
