Homework 2

My language will cover the three high level areas of Name, Education to date, and Employment.

The language used to describe the name breaks it up into the three possible parts to a name (excluding jr.)

The language describing Education to date allows for different schools to be entered, and for each school

to have its own name, address (broken up into parts as well) and time attended. Lastly, the language

describes Employment, breaking that down into different sections for each employer, and allowing each

employer to have their own name, job description, time worked their, and references (also broken up into parts)

XML Tag Description
<SchoolAddress> .... </SchoolAddress> Opens School Addess
<School1> .... </School1> Defines New School
<Name> .... </Name> Name
<StNo> .... </StNo> Street Number
<city> .... </city> city
<ST> .... </ST> state
<zip> .... </zip> zipcode
<EntrName> .... </EntrName> Allows Name to be entered at head of resume
<First> .... </First> Frist Name
<Middle> .... </Middle> Middle Name
<Last> .... </Last> Last Name
<Employment> .... </Employment> Opens Employment to be edited
<Employer1> .... </Employer1> New Employer
<Time> .... </Time> Time spent at school or job
<JobDes> .... </JobDes> Job Description
<Ref> .... </Ref> Opens Reference to be edited
<PhnNo> .... </PhnNo> Phone Number
<email> .... </email> email

Example Code: Employment
<Emplyoment>
<Employer1>
<Nm> .... </Nm>
<Time> .... </Time>
<JobDes> .... </JobDes>
<Ref>
<Nm> .... </Nm>
<email> .... </email>
<PhnNo> .... </PhnNo>
</Ref>
</Employer1>
<Employer2> .... </Employer2>
</Employment>
Example Code: Name
<EntrName>
<First> .... </First>
<Middle> ....</Middle>
<Last> .... </Last>
</EntrName>
Example Code: School Address
<SchoolAddress>
<School1>
<Name> .... </Name>
<StNo> .... </StNo>
<city> .... </city>
<ST> ....</ST>
<zip> .... </zip>
<Time> .... </Time>
</Schoo1>
<School2> .... </School2>
</SchoolAddress>