Tags (continued)

With XML, you can provide a domain-specific tag name to describe data. For example, in the code snippet on the right, the <subject> tag indicates that the text between the tags is the subject of the message. Similarly, you can create a <date> tag to specify the date of the message, as shown below:

    <date> 12/01/2007 </date>

<Messages>
  
<mail>
    
<to> you@yourAddress.com </to>
    
<from> me@myAddress.com </from>
    
<subject> Car lights on </subject>
    
<body type= "text without graphic">
    Owner of vehicle with license plate

    
454-561, your lights are on! </body>
  
</mail>
</Messages>
Click the Next button to continue.