Hi Tualha,
There was some error on your XSL code...i have modified the XSL a little bit. Here is the code:
-----------------------------------------------------------
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<html>
<xsl:for-each select="mca/course_info">
<head>
<title>
<xsl:value-of select="./@title"/>
<!--A Student's Guide -->
</title>
</head>
<body>
<h1><!--Does this print-->
<xsl:value-of select="./@course_name"/>
</h1>
<!--And what about this-->
</body>
</xsl:for-each>
</html>
</xsl:template>
</xsl:stylesheet>
-----------------------------------------------------------------
I didn't know how you wanted the output, so i removed the errors the way i thought the output should be...
I hope this helps..
Shantanu