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
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="html.css" />
<title>Java Algebra System (JAS)</title>
</head>
<!-- margin and header/body on top, control panel on bottom -->
<frameset cols="150,*" >
<frame src="navigate.html" name="nav" scrolling="auto"
marginwidth="0" marginheight="0" frameborder="0" />
<frame src="intro.html" name="main" scrolling="yes"
marginwidth="0" marginheight="0" frameborder="0" />
<noframes>
<body>
<div class="nav">
<p><a href="navigate.html">Navigation without frames</a></p>
<p>Please activate frames to view these pages.</p>
</div>
<!--p align="right" >
$Id$
</p-->
</body>
</noframes>
</frameset>
</html>
|