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 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Flying Saucer: CSS List Support</title>
<link rel="stylesheet" type="text/css" href="general.css" title="Style" media="screen" />
<style>
html {
background-color: transparent;
}
body {
background-color: white;
border: 0px;
margin: 0;
padding: 15;
text-align: center;
}
p {
font-size: 10pt;
}
</style>
</head>
<body>
<div style="border: 1px dotted blue; padding: 10px">
<p id="fslogo">Flying Saucer</p>
<img src="images/flyingsaucer.png" />
<p id="pagebyline">Browser Application Demo</p>
<p>An example of integrating Flying Saucer in a real application.</p>
<p><em>(This is not a real web browser)</em></p>
<p>Licensed under the GNU Lesser General Public License.</p>
</div>
</body>
</html>
|