<?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>Jetgirl12</authorname>
        <url>http://www.wittycomics.com/users/Jetgirl12</url>
        <email></email>
    </author>
    <strip>
        <title>Monkey Business Episode 4</title>
        <date>05-10-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>35</scene>
                <narration>A worker at a law firm is a monkey.</narration>
                <speech>
                    <actor>64</actor>
                    <words>Hi boss!</words>
                </speech>
                <shout>
                    <actor>16</actor>
                    <words>Hi, how are you? I like to believe that I am fine,but problems at home are quite annoying. Did you know puppies grown in wintertime? I thought it was just a myth, but you know how it is! I can't help but feel insecure though, it's in my blood. It suredoes rain alot. And suns? is that what you say? Anyway...How are you?</words>
                </shout>
            </panel>
            <panel>
                <scene>35</scene>
                <narration></narration>
                <speech>
                    <actor>64</actor>
                    <words>.....Hi boss!</words>
                </speech>
                <shout>
                    <actor>16</actor>
                    <words>Great so your sarcastic! I have enough of that at home you dumb monkey! And don't say, I can't insult workers, because I don't care! I will! SO THERE! Why don't people listen these days, you kow? People like you! I HATE YOU! I HATE YOU! My wife cindy left me, but it's okay because I killed her boyfriend, muahahahah! So ha! Make fun of that!</words>
                </shout>
            </panel>
            <panel>
                <scene>35</scene>
                <narration></narration>
                <speech>
                    <actor>64</actor>
                    <words>...You're a great boss.</words>
                </speech>
                <speech>
                    <actor>16</actor>
                    <words>Stay far away from here.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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