XML Profile Homework

 

Build Your Own XML Resume

Please build your own resume using this DTD and XML format.

After you build your profile (resume), you should use the xmlint tool from www.microsoft.com to verify that it is a well-formed and valid document.

Here is an example:

<?xml version="1.0"?>

<!DOCTYPE profile SYSTEM "profile.dtd">

<profile>
<owner type = "STUDENT" age = "20">
	<Name>
		<FirstName>Richard</FirstName>
		<MiddleName init = "P">Pong Nam</MiddleName>
		<LastName>Sinn</LastName>
	</Name>

	<Phone>
		<Home>(000)000-0000</Home>
		<Work>(000)000-0000</Work>
		<Fax/>
		<Pager/>
		<Cell/>
	</Phone>

	<Address type = "HOUSE">
		<StreetAddr>555 Bailey Avenue</StreetAddr>
		<City>San Jose</City>
		<State>Ca</State>
		<ZipCode>95141</ZipCode>
	</Address>

	<Email>
		<ul>
			<li>sinn@us.ibm.com</li>
			<li>sinn@mathcs.sjsu.edu</li>
			<li>webmaster@openloop.com</li>
		</ul>
	</Email>

	<Education>
		<Institution>
			<GraduationDate>1998</GraduationDate>
			<schoolName>University of Minnesota-Twin Cities</schoolName>
			<degree type = "MS" major =  "CS" gpa = "3.97"/>
		</Institution>

		<Institution>
			<GraduationDate>1994</GraduationDate>
			<schoolName>University of Wisconsin-Madison</schoolName>
			<degree type = "BS" major =  "CS" gpa = "3.80"/>
		</Institution>
	</Education>

	<techSkills>
		<Languages>Java</Languages>		
		<Languages>C++</Languages>
		<Languages>C</Languages>
		<Languages>JavaScript</Languages>
		<Languages>XML</Languages>
		<Languages>HTML</Languages>
		<Languages>SQL</Languages>

		<System>Windows</System>				
	</techSkills>

</owner>
</profile>

 

 

NOTE: What to handin: