<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="Participants.css"?>
<!--This is our Final Project XML document for XSD-->
<Participants source="&source-text;" version="1.0">


<Participants
xmnls="http://www.gmail.com/belasuchdev/Participants"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.gmail.com/belasuchdev/Participant Participant.xsd">

  <Participant Tags="CMIS 170 Student" ID="01" is="Bela_Thakkar">
    <Name>
      <First>Bela</First>
      <Last>Thakkar</Last>
    </Name>
    <Location>
      <City>Charleston</City>
      <State>West_Virginia</State>
    </Location>
    <Phone Kind="Work">
      <Number>304-555-1212</Number>
    </Phone>
    <Knows>Veena R</Knows>
    <Description>&bela-description;</Description>
  </Participant>
  <Participant Tags="CMIS 170 Student" ID="02" is="Makeda_White">
    <Name>
      <First>Makeda</First>
      <Last>White</Last>
    </Name>
    <Location>
      <City>Baltimore</City>
      <State>Maryland</State>
    </Location>
    <Phone Kind="Work">
      <Number>605-562-3000</Number>
    </Phone>
    <Knows>Veena R</Knows>
    <Description>&makeda-description;</Description>
  </Participant>
</Participants>
/* CSS file named Participant.css */
Participants
Participant {
    font-family:Times New Roman, Arial, Helvetica, Courrier New;
}
Name {
   display: list-item;
   list-style: disc inside;
   color: green;
   font-style:italic;
   font-size:14pt;
}   
Location {
    display: list-item;
	list-style: disc inside;
	color: blue;
	font-style:italic;
	font-size:12pt;
}
Phone {
    display: list-item;
	list-style:disc inside;
	color: puple;
	font-style:italic;
	fontsize:12pt;
}
