home *** CD-ROM | disk | FTP | other *** search
/ XML Bible (2nd Edition) / XML_Bible_Second_Edition_Hungry_Minds_2001.iso / mac / source / 17 / 17-6.xsl < prev    next >
Extensible Markup Language  |  2001-02-05  |  409b  |  19 lines

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet version="1.0"
  3.   xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4.  
  5.     <xsl:template match="/">
  6.       <html>
  7.         <head>
  8.           <title>Atomic Number vs. Atomic Weight</title>
  9.         </head>
  10.         <body>
  11.           <table>
  12.             Atom data will go here
  13.           </table>
  14.         </body>
  15.       </html>
  16.     </xsl:template>
  17.  
  18. </xsl:stylesheet>
  19.