-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.xsl
More file actions
24 lines (24 loc) · 767 Bytes
/
Copy pathstyle.xsl
File metadata and controls
24 lines (24 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?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>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.item {
color: green;
font-size: 18px;
}
</style>
</head>
<body>
<div class="item">
<xsl:value-of select="/data/item"/>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>