Problem Statement

The resume features that will be covered by my XML language will be contact information, education, activities, and skills.

Keyword Design

XML Tag Description
<resume>...</resume> Table for resume information
<contact>...</contact> Contains name, mailing address and e-mail
<name>...</name> Full name
<mailing>...</mailing > Mailing address
<email >...</email > E-mail
<education>...</education> Contains schools attended or attending
<highschool>...</highschool > Highschool attended
<university >...</university > Current university and expected graduation date
<activities>...</activities> Contains activities outside of acadmic classes
<gemstone>...</gemstone > Gemstone team name and information
<church >...</church > church leadership role
<skills>...</skills> Contains skills
<basic >...</basic > Basic word processing and presentation skills
<programming >...</programming > Programming proficiency
<language >...</language > Linguistic ability

Example of XML Markup

< resume > 
< contact >
	< name > Caleb Hii < /name > 
 	< mailing > 
		7703 MacArthur Blvd.
		Cabin John, MD 20818 
	< /mailing >
	< email > cabs4000@umd.edu < /email >  
< /contact >
 
< education >
	< highschool >
		Walt Whitman High School, Bethesda, MD
		Class of 2008
	< /highschool >
	< university >
 		University of Maryland, College Park, MD
		B.S. in Civil Engineering
		Expected graduation: 2012
	< /university >
< /education >	
 
< activities >
	< gemstone >
		Gemstone Program: Team GREEN JUSTICE
		Stands for Geared Reassessment of Ecological and Environmental Needs to Justly Utilize Sustainable Techniques in Communities Everywhere
	< /gemstone >
	< church >
		Praise Team leader of Cabin John United Methodist Church
	< /church >
< /activities >

< skills >
	< basic >
		Proficient at Microsoft Word, Excel and Powerpoint
	< /basic >
	< programming >
		Html, Java
	< /programming >
	< language >
		Fluent in Mandarin
	> /language >
< /skills >

< resume >

Sample of Hierarchy of Keywords and Content

Back