c812a3ee01b3863b5ef512881d4666af.ppt
- Количество слайдов: 70
KROTSCHECK_E AUER_J BALAZS_ANNA_C JASNOW_D BALAZS_ANNA_C PANICONI_MARCO HAMPRECHT_B PELSTER_AXEL JASTER_ANDREAS HAHN_H HARLEY_R_T JOHN_G_H SEPPA_H HASSEL_J YAMAUCHI_HISAO ITAHARA_H KOCH_ERIK GOEDECKER_STEFAN SOLYOM_JENO FATH_G SOLYOM_JENO LEGEZA_ORS SOLYOM_JENO KIM_EUGENE_H
KROTSCHECK_E AUER_J BALAZS_ANNA_C JASNOW_D BALAZS_ANNA_C PANICONI_MARCO HAMPRECHT_B PELSTER_AXEL JASTER_ANDREAS HAHN_H HARLEY_R_T JOHN_G_H SEPPA_H HASSEL_J YAMAUCHI_HISAO ITAHARA_H KOCH_ERIK GOEDECKER_STEFAN SOLYOM_JENO FATH_G SOLYOM_JENO LEGEZA_ORS SOLYOM_JENO KIM_EUGENE_H
<? xml version="1. 0" encoding="ISO-8859 -1"? > <catalog> <cd> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <country>USA</country> <company>Columbia</company> <price>10. 90</price> <year>1985</year> </cd> <title>Hide your heart</title> <artist>Bonnie Tyler</artist> <country>UK</country> <company>CBS Records</company> <price>9. 90</price> <year>1988</year> </cd> <title>Greatest Hits</title> <artist>Dolly Parton</artist> <country>USA</country> <company>RCA</company> <price>9. 90</price> <year>1982</year> </cd> </catalog>
<? xml version="1. 0" encoding="ISO-8859 -1"? > <catalog> <cd> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <country>USA</country> <company>Columbia</company> <price>10. 90</price> <year>1985</year> </cd> <title>Hide your heart</title> <artist>Bonnie Tyler</artist> <country>UK</country> <company>CBS Records</company> <price>9. 90</price> <year>1988</year> </cd> <title>Greatest Hits</title> <artist>Dolly Parton</artist> <country>USA</country> <company>RCA</company> <price>9. 90</price> <year>1982</year> </cd> <? xml version="1. 0"? > </catalog> </xsl: stylesheet> <xsl: stylesheet version="1. 0" xmlns: xsl="http: //www. w 3. org/1999/XSL/Tran sform"> <xsl: template match="/"> <html> <body> <h 2>My CD Collection</h 2> <table border="1"> <tr bgcolor="#9 acd 32"> <th>Title</th> <th>Artist</th> </tr> <xsl: for-each select="catalog/cd"> <tr> <td><xsl: value-of select="title"/></td> <td><xsl: value-of select="artist"/></td> </tr> </xsl: for-each> </table> </body> </html> </xsl: template>
c812a3ee01b3863b5ef512881d4666af.ppt