In my web development class, we're learning XML, but I think we're going about it in a deprecated way. Is the following code valid for the body of an HTML document?
<body>
<h1>Favorite Vacation Spots</h1>
<xml id="vacation" src="vacation.xml"></xml>
<table border="2" width="80%" datasrc="#becky">
<tr>
<th colspan="5"><span class="celltext" datafld="city"></span></th>
<th>Hello!</th>
</tr>
</table>
</body>
If you need to see the full supposed-to-be-functional code:
http://dontpoke.com/testprojects/becky.html
http://dontpoke.com/testprojects/becky.xml
It's truncated, but verbatim from the example my instructor gave us. It displays fine in the antiquated editor we're using (1stPage2000) but not in any web browser I can find.
<body>
<h1>Favorite Vacation Spots</h1>
<xml id="vacation" src="vacation.xml"></xml>
<table border="2" width="80%" datasrc="#becky">
<tr>
<th colspan="5"><span class="celltext" datafld="city"></span></th>
<th>Hello!</th>
</tr>
</table>
</body>
If you need to see the full supposed-to-be-functional code:
http://dontpoke.com/testprojects/becky.html
http://dontpoke.com/testprojects/becky.xml
It's truncated, but verbatim from the example my instructor gave us. It displays fine in the antiquated editor we're using (1stPage2000) but not in any web browser I can find.