Matching Several Element Names
If you want to select more than one element at the same time, simply separate the names of the elements with a vertical line character "|". For example,
<xsl:template match="poem | line | stress">
matches all of the poem, line, and stress elements.