summaryrefslogtreecommitdiff
path: root/works/animgifobj.html
blob: fba8d96ec5d924f6a373e38b7ee26a9f9b54563a (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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
        "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Animated GIF test</title>
</head>

<body style="background-color: yellow">

<h1>Animated GIF test</h1>

<h2>Unscaled inline</h2>
<p><img src="waves.gif" alt="Rendered on RISC OS"></p>

<h2>Scaled inline</h2>
<p><img src="waves.gif" alt="Rendered on RISC OS" style="width: 10em; height: 3em"></p>

<h2>Floated</h2>
<p><img src="waves.gif" alt="Rendered on RISC OS" style="float: right"></p>

<h2 style="clear: right">Floated scaled</h2>
<p><img src="waves.gif" alt="Rendered on RISC OS" style="float: right; width: 10em; height: 3em"></p>

</body>
</html>