Introducing
Your new presentation assistant.
Refine, enhance, and tailor your content, source relevant images, and edit visuals quicker than ever before.
Trending searches
Question
<!ATTLIST element_name attribute_name attribute type [default_value]>
<!ENTITY entity_name “entity_value”>
XSL Document Structure
<xsl:stylesheet xmlns:xsl=http://www.w3.org/1999/XSL/Transform
xmlns=http://www.w3.org/1999/xhtml>
Template specification :
<xsl:template match=“xpath expression”>
Value of an element <xsl:value-of select=“xpath”>
Looping using <xsl:for-each select=“xpath”>
Sorting using <xsl:sort select=“xpath” order=“ascending | descending” />
<?xml-stylesheet type=“text/xsl” href=“a.xsl”?>
XML
4. a) Design an XML document to store information about a student in an
engineering college affiliated to VTU. The information must include USN, Name, Name of the College, Branch, Year of Joining, and e-mail id. Make up sample data for 3 students. Create a CSS style sheet and use it to display the document.
b) Create an XSLT style sheet for one student element of the above document and use it to create a display of that element.