Design of XML Language
Problem Statement
This XML language displays a simple way to represent features of my resume. Including things like my name, address, and education by using these assigned keywords and XML tags.
Keyword Design
| XML Tag | Description of Tag |
|---|---|
| <resume>...</resume> | Content of Resume |
| <name>...</name> | Name |
| <contactinfo>...</contactinfo> | Contact Information |
| <haddress>...</haddress> | Home Address |
| <saddress>...</saddress> | School Address |
| <major>...</major> | Major |
| <edu>...</edu> | Current Institutions and Degrees |
| <employment>...</employment> | Past and Current Job Information |
Example of XML Mark-Up
<resume> <name> Daniel John Bonato </name> <contactinfo> E-mail:bnato28@hotmail.com </contactinfo> <haddress> 22 Mockingbird Lane, Petersburg, NJ 08270 </haddress> <saddress> 4221 Knox Road Apt. A, College Park, MD 20740 </saddress> <major> Civil Engineering (Infrastructure) </major> <edu> Ocean City High School 2002-2006, University of Maryland-College Park 2007-Present </edu> <employment> Shoobies Restaurant </employment> </resume>
Hierarchy of Keywords and Content
![]()