PRACTICAL – 5th
BOOK STORE :-
XSL FILE (example.xsl) –
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title>Book Store</title>
<style>
.center-table {
display: flex;
justify-content: center;
margin-top: 20px;
}
table {
border-collapse: collapse;
width: 80%;
}
table, th, td {
border: 2px solid black;
}
th, td {
padding: 10px;
text-align: center;
}
img {
width: 100px;
height: 150px;
}
button {
padding: 5px 10px;
background-color: #4CAF50; /* Green */
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="center-table">
<table>
<tr>
<th align="center">Book Image</th>
<th align="center">Book Name</th>
<th align="center">Author</th>
<th align="center">Publisher</th>
<th align="center">Edition</th>
<th align="center">Price</th>
<th align="center">Checkout</th>
</tr>
<xsl:for-each select="library_details/library">
<tr>
<td><img src="{Image}" alt="Book Image" /></td>
<td><xsl:value-of select="Bookname"/></td>
<td><xsl:value-of select="Author"/></td>
<td><xsl:value-of select="Publisher"/></td>
<td><xsl:value-of select="Edition"/></td>
<td><xsl:value-of select="Price"/></td>
<td><button>Add to Cart</button></td>
</tr>
</xsl:for-each>
</table>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
XML FILE (Library.xml) –
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="example.xsl"?>
<library_details>
<library>
<Bookname>Web Technology</Bookname>
<Author>Robet Roy</Author>
<Publisher>Technical</Publisher>
<Edition>7th</Edition>
<Price>650</Price>
<Image><url>https://www.dreamtechpress.com/wp-
content/uploads/2019/02/9788177229974.jpg</url></Image>
</library>
<library>
<Bookname>Software Engineering</Bookname>
<Author>IAN SOMMERVILLE</Author>
<Publisher>Technical</Publisher>
<Edition>8th</Edition>
<Price>450</Price>
<Image><url>https://m.media-
amazon.com/images/I/41Z7SzW4PRL._SX342_SY445_.jpg</url></Image>
</library>
<library>
<Bookname>DBMS</Bookname>
<Author>DR. HARIRAM CHAVAN</Author>
<Publisher>Technical</Publisher>
<Edition>5th</Edition>
<Price>399</Price>
<Image><url>https://m.media-amazon.com/images/I/41r-
A1NxXpL._SX342_SY445_.jpg</url></Image>
</library>
<library>
<Bookname>Computer Networks</Bookname>
<Author>David Brown</Author>
<Publisher>Technical</Publisher>
<Edition>7th</Edition>
<Price>500</Price>
<Image><url>https://m.media-
amazon.com/images/I/51w3u7pbDML._SY445_SX342_.jpg</url></Image>
</library>
<library>
<Bookname>D.A.A</Bookname>
<Author>Bhupendra Mandloi</Author>
<Publisher>Technical</Publisher>
<Edition>7th</Edition>
<Price>600</Price>
<Image><url>https://m.media-
amazon.com/images/I/41AMN5IwVyL._SY466_.jpg</url></Image>
</library>
</library_details>
OUTPUT :-