John Gossman
Asymetrix
>----------
>From: Rick Jelliffe[SMTP:ricko@allette.com.au]
>Sent: Tuesday, August 26, 1997 4:47 PM
>To: 'xml-dev@ic.ac.uk'
>Subject: Re: Request for advice defining an XML based syntax
>
>
>You should also consider:
>
><button
> left="50"
> right="100"
> top="80"
> bottom="100">
> "Click Here"</button>
>
>The XML element type declaration for this is:
>
><!ELEMENT button (#PCDATA) >
><!ATTLIST button
> left CDATA #REQUIRED
> right CDATA #REQUIRED
> top CDATA #REQUIRED
> bottom CDATA #REQUIRED >
>
>
>
>