﻿<?xml version="1.0" encoding="utf-8" ?>
<!-- File Name: fishinginformation.xsl -->

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">

<HTML>
<HEAD>
<title>Atlantic Fishing Statistics</title>
</HEAD>
<Body>
<h2>Atlantic Fishing Statistics</h2>
<Table Border="1" Cellpadding="5">
<Thead>
<th>Species</th>
<th>Weight</th>
<th>Fisherman</th>
<th>Date</th>
<th>Location</th>
</Thead>

<xsl:for-each select="Atlanticfishgroup/member">
<TR align="center">
<td>
	<xsl:value-of select="species"/>
</td>
<td>
	<xsl:value-of select="Weight"/>
</td>
<td>
	<xsl:value-of select="fisherman"/>
</td>
<td>
	<xsl:value-of select="Date"/>
</td>
<td>
	<xsl:value-of select="location"/>
</td>
</TR>
</xsl:for-each>
</Table>
</Body>
<center>
<a href="fishinginformation.xsl">XSL</a>
>>
<a href="fishinginformation.xml">XML</a>
>>
<a href="fishinginformation.dtd">DTD</a>
</center>
</HTML>
 
</xsl:template>
</xsl:stylesheet>