HW 2

Homework Assignment 2

Problem Statement

My XML language will cover the basic parts of a resume including addresses and education. For an address, important items would be the street address, city and state. Education will be organized with information such as school and year graduated.

Keyword Design

XML Tag Description
<resume> .... </resume> resume
<name> .... </name> your name
<address> .... </address> address
<street> .... </street> street
<apt> .... </apt> apartment number
<city> .... </city> city
<state> .... </state> state
<zip> .... </zip> zip code
<edu> .... </edu> education
<school> .... </school> school name
<year> .... </year> year graduated

Example of XML Markup


<resume> 

	<name> Tina Liu </name>

	<address> 
		<street> 4318 Knox Road </street>
		<city> College Park </city>
		<state> Maryland </state>
		<zip> 20740 </zip>
	</address>

	<edu> 
		<school> University of Maryland, College Park </school>
		<year> 2011 </year>
	</edu>

</resume>

Hierarchy of Keywords and Content