My Movie Collection
Title
Artist
GoldenEye (1995)
Pierce Brosnan
Alpha Dog (2006)
Bruce Willis
Beowulf (2007)
Anthony Hopkins
Frequency (2000)
Dennis Quaid
The Tuxedo (2002)
Jackie Chan
<playlist> <movie> <title>GoldenEye (1995)</title> <rate>PG-13</rate> <duration>130 min</duration> <category>Action, Adventure, Thriller</category> <score>7.2</score> <plot>Years after a friend and fellow 00 agent is killed on a joint mission, a secret space based weapons program known as "GoldenEye" is stolen. James Bond sets out to stop a Russian crime syndicate from using the weapon</plot> <director>Martin Campbell</director> <artist>Pierce Brosnan</artist> </movie> <movie> <title>Alpha Dog (2006)</title> <rate>R</rate> <duration>122 min</duration> <category>Biography, Crime, Drama</category> <score>6.9</score> <plot>Johnny and a couple pals kidnap Jake's 15-year-old brother, Zach, then assigns his buddy Frankie to be Zach's minder. They develop a brotherly friendship. Zach parties with his captors as things begin to spin out of control</plot> <director>Nick Cassavetes</director> <artist>Bruce Willis</artist> </movie> <movie> <title>Beowulf (2007)</title> <rate>PG-13</rate> <duration>115 min</duration> <category>Animation, Action, Adventure</category> <score>6.2</score> <plot>The warrior Beowulf must fight and defeat the monster Grendel, who is terrorizing Denmark, and later, Grendel's Mother, who begins killing out of revenge</plot> <director>Robert Zemeckis</director> <artist>Anthony Hopkins</artist> </movie> <movie> <title>Frequency (2000)</title> <rate>PG-13</rate> <duration>118 min</duration> <category>Crime, Drama, Mystery</category> <score>7.3</score> <plot>An accidental cross-time radio link connects father and son across 30 years. The son tries to save his father's life, but then must fix the consequences</plot> <director>Gregory Hoblit</director> <artist>Dennis Quaid</artist> </movie> <movie> <title>The Tuxedo (2002)</title> <rate>PG-13</rate> <duration>98 min</duration> <category>Action, Comedy,Sci-Fi</category> <score>5.4</score> <plot>A hapless chauffeur must take a comatose Secret Agent's place using his special gadget-laden tuxedo</plot> <director>Kevin Donovan</director> <artist>Jackie Chan</artist> </movie> </playlist>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <body> <h2>My Movie Collection</h2> <table border="1"> <tr bgcolor="#9acd32"> <th>Title</th> <th>Artist</th> </tr> <xsl:for-each select="playlist/movie"> <tr> <td><xsl:value-of select="title" /></td> <td><xsl:value-of select="artist" /></td> </tr> </xsl:for-each> </table> </body> </html> </xsl:template> </xsl:stylesheet>