-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEjercicio2_b.xslt
47 lines (42 loc) · 1.02 KB
/
Ejercicio2_b.xslt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<html>
<xsl:apply-templates />
</html>
</xsl:template>
<xsl:template match="cifp">
<h1>
<xsl:value-of select="@nombre" />
</h1>
<p> Pagina Web: <a>
<xsl:attribute name="href">
<xsl:value-of select="@web" />
</xsl:attribute>
<xsl:value-of select="@web" />
</a>
</p>
<ul>
<xsl:apply-templates />
</ul>
</xsl:template>
<xsl:template match="ciclo">
<li>
<xsl:value-of select="nombre" />
</li>
</xsl:template>
</xsl:stylesheet>
<!-- <html>
<h1>CIFP Cesar Manrique</h1>
<p>
Página web:
<a href=" http://www. cifpcesarmanrique.es/">
http://www. cifpcesarmanrique.es/
</a>
</p>
<ul>
<li>Administración de Sistemas Informáticos en Red</li>
<li>Desarrollo de Aplicaciones Web</li>
<li>Sistemas Microinformáticos y Redes</li>
</ul>
</html> -->