Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/smils/textpln.smil
blob: 48cd50cf5240c8097ee7a120e6742db9c035bc92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0"?>
<!DOCTYPE smil PUBLIC "-//W3C//DTD SMIL 2.0//EN"
                      "http://www.w3.org/ns/SMIL">
<smil xmlns="http://www.w3.org/ns/SMIL">
<head>
  <layout>
    <root-layout width="1200" height="900" background-color="black"/>
    <region xml:id="textregion"
        top="100"
        width="800"
        height="600"
        left="100"
        textColor="black"
        backgroundColor="white"
    />
  </layout>
</head>
<body>
    <smilText xml:id="txt" region="textregion" dur="indefinite" fill="hold">
<span textColor="black" textFontSize="xx-large" textFontStyle="normal"
textFontFamily="serif"  textFontWeight="bold">
*****text goes here*****
</span>
    </smilText>
</body>
</smil>