Ok, I really need help . I am writing an XML document and an XSL document. I know my xml is correct... but i do not know how to get it going with the xsl part. I am extremely confused and hope maybe someone can point out what I am doing wrong... thank you for reading!
xml code:
<?xml version = "1.0"?>
<?xml-stylesheet type="text/xsl" href="schools.xsl">
<Universities>
<college public = "Montclair State University">
<Established>1908</Established>
<Owner>Public</Owner>
<Location>Montclair, New Jersery</Location>
<OriginalSize>25 Acres</OriginalSize>
<OriginalName>New Jersey State Normal School at Montclair</OriginalName>
<Population>18,171</Population>
<Colleges>5</Colleges>
</college>
<college public = "NJIT">
<Established>1881</Established>
<Owner>Public</Owner>
<Location>Newark, New Jersey</Location>
<OriginalSize>~ 18 Acres</OriginalSize>
<OriginalName>Newark Technical School</OriginalName>
<Population>10,000+</Population>
<Colleges>6</Colleges>
</college>
<college private = "Princeton">
<Established>1746</Established>
<Owner>Private</Owner>
<Location>Princeton, New Jersey</Location>
<OriginalSize></OriginalSize>
<OriginalName>College of New Jersey</OriginalName>
<Population>7,567</Population>
<Colleges>6</Colleges>
</college>
<college public = "Rutgers">
<Established>1766</Established>
<Owner>Public</Owner>
<Location>New Brunswick, Piscataway Twp, Camden and Newark, New Jersey</Location>
<OriginalSize>7 Acres</OriginalSize>
<OriginalName>Queens College</OriginalName>
<Population>52,471</Population>
<Colleges>27</Colleges>
</college>
<college public = "UMD">
<Established>1970</Established>
<Owner>Public</Owner>
<Location>Newark, New Jersey</Location>
<OriginalSize></OriginalSize>
<OriginalName>New jersey College of Medicine and Dentistry</OriginalName>
<Population>5,764</Population>
<Colleges>8</Colleges>
</college>
</Universities>
xsl code:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xslutput method="html"/>
<xsl:template match="/">
<html><head><title>Universities of New Jersey</title></head>
<body>
<h1>Universities of New Jersey</h1>
<table border="1"><tr>
<th>University</th>
<th>Established</th>
<th>Owner</th>
<th>Location</th>
<th>OriginalSize</th>
<th>OriginalName</th>
<th>Population</th>
<th>Colleges</th></tr>
Bookmarks