XML Demonstartion

If I were to put XML tags on a resume, this is how it would be done. We will demonstrate this by listing my personal info and education with XML tags:
XML Tag Description
<personal info> .... </personal info> personal info, such as my name, etc.
<education> .... </education> education, schools that I went to

Well, you get the idea... Here is how the XML code would be written out:

<?xml version=.1.0.?>
<resume>
	<personal info>
		<name>Victorio Matias</name>
		<e-mail address> vmatias@umd.edu</e-mail address>
	</personal info>

	<education>
		<high school>The Bronx High School of Science</high school>

		<college>The City College of New York</college>
		<college>The University of Maryland, College Park</college>

		<major>Physical Sciences</major>

	</education>
</resume>

This is how the organization of tags would look like under a tree structure: