Source of imgText.smil

<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
  <head>
    <meta name = "title"
          content = "Adding an image and text" />
    <layout>
      <root-layout height = "300"
                   width = "400"
                   backgroundColor = "blue" />

      <region id = "mainRgn"
              left = "10%"
              top = "5%"
              height = "70%"
              width = "80%"
              backgroundColor = "red" />

      <region id = "textRgn"
              left = "10%"
              top = "80%"
              height = "10%"
              width = "80%"
              backgroundColor = "green" />

    </layout>

  </head>

  <body>
    <par>
      <img src = "water.gif"
           region = "mainRgn"
           dur = "5s" />
      <text src = "animGif.txt"
            region = "textRgn"
            dur = "5s" />

    </par>
  </body>

</smil>