<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href="../CSS/example_style.css" type="text/css"?>
<html xmlns="http://www.w3.org/TR/REC-html40" xmlns:my="http://zvon.org/jiratj">
   <head/>
   <body>
      <a class="naviBlack" href="xml1_out.xml">Prev</a>
	|
	<a class="naviBlack" href="xml2_out.xml">Next</a>
	  |
	<a class="naviBlack" href="xlinksimple_help.html">[Help]</a>
      <h2>2. 
  Attribute Value Defaulting
 </h2>
      <span class="description">
         <h4>Description</h4>
 It is possible to specify default attribute values in DTD. 
 Attributes then do not have to appear physically on
 element start-tags.
 </span>
      <br/>
      <hr/>
      <table>
         <tr>
            <th class="code">
               <span class="code">DTD source  </span>
            </th>
         </tr>
         <tr>
            <td class="code">
               <span class="code">
                  <pre>
  &lt;!ELEMENT zvon:logo (#PCDATA)&gt;

&lt;!ATTLIST zvon:logo
          xmlns:xlink   CDATA    #FIXED "http://www.w3.org/1999/xlink"
          xlink:type    (simple) #FIXED "simple"
          xlink:href    CDATA    #FIXED "zvon.gif"
          xlink:show    (embed)  #FIXED "embed"
          xlink:actuate (onLoad) #FIXED "onLoad"
&gt;

 </pre>
               </span>
            </td>
         </tr>
      </table>
      <table>
         <tr>
            <th class="code">
               <span class="code">Source  </span>
            </th>
         </tr>
         <tr>
            <td class="code">
               <span class="code">
                  <pre>
  &lt;zvon:logo xmlns:zvon = "http://www.zvon.org"&gt;
 Zvon logo
&lt;/zvon:logo&gt;


 </pre>
               </span>
            </td>
            <td class="result">
               <span class="result"/>
            </td>
         </tr>
      </table>
      <hr/>
   </body>
</html>