Back to Homeweb Page

A Simple XML Example

XML Language

Problem Statement.


The purpose of this assignment is to define XML tags for the resume in assignment 1. The XML language developed will be used to describe different parts of my resume. The high level areas used will be name, contact information, and schools attended.


Keyword Design.

XML Tag Description
<Resume> .... </Resume> Represents the beginning and the end of the resume
<Name> .... </Name> Full name of the person on resume
<First> .... </First> First name of person
<Last> .... </Last> Last name of person
<ContactInformation; .... </ContactInformation> Different forms of communication
<Email> .... </Email> Email address
<Homephone> .... </Homephone> Home phone number with area code
<Cellphone> .... </Cellphone> Mobile phone number with area code
<SchoolAttended> .... </SchoolAttended> Schools that person has attended
<University> .... </University> A list of universities attended
<CommunityColleges> .... </CommunityCollege> A list of community colleges attended

Example of XML Markup.


<Resume>
	<Name>
		<First>
			Javier
		</First>
	        <Last>
			Arias
	        </Last>
	</Name>
	<ContactInformation>
		<Email>
			javier316@verizon.net
		</Email>
		<Homephone>
			301-894-0263
		</Homephone>
		<Cellphone>
			202-420-0070
		</Cellphone>
	</ContactInformation>
	<School Attended>
		<University>
			University of Maryland, College Park and University of District of Columbia
		</University>
		<CommunityCollege>
			Prince George's Community College and Montgomery College 
		</CommunityCollege>
	</School Attended>
</Resume>


Hierarchy of Keywords and Content.