In this Assignment, I will develop a short description of areas (with a focus of two high-level areas) on my resume using XML language.
Here is an example of a simple XML Markup of what would be included within the resume.
<resume> <Name> St. Jerome Davis IV </Name> <Home Address> ...... </Home Address> <School Address> <Building> 3104 Somerset Hall </Building> <Location> University of Maryland </Location> <City> College Park </City> <Zip Code> 20740 </Zip Code> <Country> U.S.A </Country> </School Address> <Major of Study> <Major> Civil Engineering </Major> <Specification> Structural </Specification> </Major of Study> <Education to date> Junior in College </Education to date> <Employment> <Job 1> <duration> ........ </duration> <title> ........ </title> <note 1> ...... </note 1> <note 2> ...... </note 2> </Job 1> <Job 2> <duration> ........ </duration> <title> ........ </title> <note 1> ...... </note 1> <note 2> ...... </note 2> </Job 2> </Employment> </resume>
This is a simple description of what the tags in the XML markup
| XML Tag | Description |
| <Building> .... </Building> | Residence Hall within which I live in |
| <Location> .... </Location> | The entity within which it is located |
| <City> .... </City> | The city within which I live |
| <Zip Code> .... </Zip Code> | Zip Code of the city that I'm in |
| <Country> .... </Country> | The Country |
| <Job > .... </Job > | 1st Job being described |
| <duration> .... </duration> | Length of time that I held the job |
| <title> .... </title> | Position held at the job |
| <note> .... </note> | Description of the job |
Here is the tree diagram showing the hierarchy.