Source of seq.smil

<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
  <head>
    <meta name = "title"
          content = "incorporating sequences" />
    <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 = "15%"
              width = "80%"
              backgroundColor = "green" />

    </layout>

  </head>

  <body>
    <seq>
      <par>
        <img src = "now.gif"
             region = "mainRgn"
             dur = "5s" />
 
        <!-- note I replace spaces with %20 -->
        <text src = "data:text/plain,This%20is%20how%20I%20look%20now"
              region = "textRgn"
              dur = "5s"/ >
      </par>
  
      <par>
        <img src = "face.gif"
             region = "mainRgn"
             dur = "5s" />
  
        <text src = "data:text/plain,This%20is%20how%20I%20look%20before%20I%20shave"
              region = "textRgn"
              dur = "5s"/ >
      </par>
    </seq> 

  </body>

</smil>