Showing posts with label XML. Show all posts
Showing posts with label XML. Show all posts

Tuesday, 26 May 2015

XML program for student details by using cascading style sheets(CSS)

Program:


 <?xml version ="1.0"?>
          <?xml-style sheet type="text/css"href="student info=css"?>
      <student info>
      <student>
         <name>ABC</name>
         <rno>004</rno>
         <branch>MMT</branch>
        </student>
     

Saturday, 16 May 2015

Employee details by using XML,DTD? XSL

Program:


Read: Visit more c,c++ and java programs

<?xml version="1.0" encoding="iso_88591"?>
<!DOCTYPE empinfo SYSTEM "empinfo.dtd"?>
<?xml-stylesheet type="text\xsl" href="empinfo.xsl">
<empinfo>
<employee>

Saturday, 28 March 2015

XML program to display the Book details With Table

Program:

Read: Download free Java Server E-book

<?xml version="1.0" encoding="UTF-8" ?><?xml-stylesheet type="text/xsl" href="catalog_xsl.xsl" ?>
<Catalog>
    <Book>
        <Title>XML Bible</Title>
        <Author>Winston</Author>
        <Publication>Wiely</Publication>
       

XML program to display the book catalogue

Program:


<?xml version="1.0" encoding="UTF-8" ?><?xml-stylesheet type="text/css" href="library.css" ?>
<Catalog xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="catalog.xsd">
    <Book>
        <Title>XML Bible</Title>