<?xml version="1.0"?>

<!DOCTYPE comic [
  <!ELEMENT comic         (comicname, author, strip)>
  <!ELEMENT comicname     (#PCDATA)>
  <!ELEMENT author        (authorname,url,email)>
  <!ELEMENT authorname    (#PCDATA)>
  <!ELEMENT url           (#PCDATA)>
  <!ELEMENT email         (#PCDATA)>
  <!ELEMENT strip         (title, date, description, panels)>
  <!ELEMENT title         (#PCDATA)>
  <!ELEMENT date          (#PCDATA)>
  <!ELEMENT description   (#PCDATA)>
  <!ELEMENT panels        (panel+)>
  <!ELEMENT panel         (scene, narration?, (speech|thought|shout|whisper|heave)*) >
  <!ELEMENT scene         (#PCDATA)>
  <!ELEMENT narration     (#PCDATA)>
  <!ELEMENT speech        (actor, words)>
  <!ELEMENT thought       (actor, words)>
  <!ELEMENT shout         (actor, words)>
  <!ELEMENT whisper       (actor, words)>
  <!ELEMENT heave         (actor, words)>
  <!ELEMENT actor         (#PCDATA)>
  <!ELEMENT words         (#PCDATA)> 
]>

<comic>
    <comicname>Witty Comics</comicname>
    <author>
        <authorname>Dick_Gozinia</authorname>
        <url>http://www.wittycomics.com/users/Dick_Gozinia</url>
        <email></email>
    </author>
    <strip>
        <title>Betty is a Man.</title>
        <date>05-07-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>60</scene>
                <narration></narration>
                <speech>
                    <actor>46</actor>
                    <words>Jim,I just found out that my wife Betty is a man.</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Wait a minute,Don't you two have kids?</words>
                </speech>
            </panel>
            <panel>
                <scene>60</scene>
                <narration></narration>
                <speech>
                    <actor>46</actor>
                    <words>Well,I thought so,But I examined them closer when she brought them home from School the other day.i found that they were made of modelling clay.</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>How could you be so sure?</words>
                </speech>
            </panel>
            <panel>
                <scene>60</scene>
                <narration></narration>
                <speech>
                    <actor>15</actor>
                    <words>I STOBBED it in one of them and the arms fell off!</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>I was wondering why you're daughter Jenna was bright Yellow..</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

<!-- ComicML is based on ComicsML http://www.xml.com/pub/a/2001/04/18/comicsml.html -->

