|
Next Meeting: Sat, TBD
Meeting Directions
|
Navigation:
20 Most Recent Documents
Search Archives
Index by date,
title,
author,
category.
|
|
Features:
Mr. Know-It-All
Ink
Download!
|
|
|
|
|
|
|
SCOUG:
Home
Email Lists
SIGs (Internet, General Interest, Programming, Network, more..)
Online Chats
Business
Past Presentations
Credits
Submissions
Contact SCOUG
Copyright SCOUG
|
|
Pictures from Sept. 1999
|
|
The views expressed in articles on this site are those of their authors.
|
SCOUG was there!
|
|
Copyright 1998-2024, Southern California OS/2 User Group.
ALL RIGHTS RESERVED.
SCOUG, Warp Expo West, and Warpfest are trademarks of the
Southern California OS/2 User Group.
OS/2, Workplace Shell, and IBM are registered trademarks of
International Business Machines Corporation.
All other trademarks remain the property of their respective owners.
The Southern California OS/2 User Group
USA
|
|
|
Creating an XML document
A personal letter in XML.
- An XML declaration isnt mandatory, but its still a good idea; a DOCTYPE is also optional
<?xml version="1.0" ?>
<!DOCTYPE letter>
<letter type="personal">
<sender>
<name>Bill Schindler</name>
<address>9533 E Park St</address>
<city>Scootsdale</city>
<state>ZA</state>
<zipcode>62858</zipcode>
</sender>
<date month="9" day="10" year="1999"/>
<recipient>
<name>Bruce Schindler</name>
<address>18 N East Ave</address>
<city>Shy Anne</city>
<state>YO</state>
<zipcode>72314</zipcode>
</recipient>
<salutation>Dear Bruce</salutation>
<body>
<para>Guess you are going to miss my presentation at "WEW."</para>
<para>I wrote this in XML!</para>
</body>
<signature closing="Sincerely">Bill</signature>
</letter>
Previous | Next
|
|