Login   Register  
PHP Classes
elePHPant
Icontem

File: me.xsl

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Sujay Bhowmick  >  XSLT Transform  >  me.xsl  >  Download  
File: me.xsl
Role: Auxiliary data
Content type: text/plain
Description: XSL StyleSheet
Class: XSLT Transform
Transform XML documents with XSL style sheet
Author: By
Last change:
Date: 2004-01-19 06:10
Size: 1,289 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">	
	<xsl:template match="/">
	<table border="0" align="center">
		<tr>
			<td align="center">
				<h2>Contact <b>
						<xsl:value-of select="me/name"/>
					</b>
				</h2>
			</td>
		</tr>
		<tr>
			<td>
				<table width="75%" align="center" border="0">
					<tr>
						<td>
							<fieldset><legend class="p">Contact</legend>
							<table width="100%" align="center" border="0" cellpadding="4" cellspacing="4">
								<tr>								
									<td class="p"><b>Address:-</b></td>
									<td class="p"><xsl:value-of select="me/address"/></td>
								</tr>
								<tr>									
									<td class="p"><b>Phone:-</b></td>
									<td class="p"><xsl:value-of select="me/tel"/></td>
								</tr>
								<tr>
									<td class="p"><b>Email:-</b></td>
									<td class="p"><xsl:value-of select="me/email"/></td>
								</tr>
								<tr>
									<td class="p"><b>Url:-</b></td>
									<td class="p"><a href="http://javainfo.com"><xsl:value-of select="me/url"/></a></td>
								</tr>
							</table>
							</fieldset>
						</td>
					</tr>
				</table>
				</td>
			</tr>	
	</table>
	</xsl:template>
</xsl:stylesheet>