Here is the XML code I am working with:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="staff.xsl"?>
<st>
<employee>
<name>
<firstname>Clay</firstname>
<lastname>Hansen</lastname>
</name>
<jobtitle>Professor</jobtitle>
<department>Department: Communication and Marketing</department>
<office>Office: CH-H 111</office>
<phone>Phone: (847)257-1234</phone>
<email>Email: <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="ee8d828f97c086ae8f8c8dc08d818dc380">[email protected]</a></email>
<profile>
<html xmlns="http://www.w3.org/1999/xhtml">
<img src="C:\Users\username\Desktop\im.jpg" />
</html>
</profile>
</employee>
</st>
https://i.sstatic.net/q2uvl.png I have encountered an issue where adding an image to my XML causes the data not to be displayed in a tabular form, but rather as words in a sentence. How can I go about solving this problem?