frame.html 1.3 KB
Newer Older
1
<!--
2
Copyright 2004-2010 H2 Group. Multiple-Licensed under the H2 License, Version 1.0,
3 4 5 6 7
and under the Eclipse Public License, Version 1.0
(http://h2database.com/html/license.html).
Initial Developer: H2 Group
-->
<html><head>
Thomas Mueller's avatar
Thomas Mueller committed
8 9 10
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
    <title>H2 Database Engine</title>
    <link rel="stylesheet" type="text/css" href="stylesheet.css" />
11
<script type="text/javascript">
Thomas Mueller's avatar
Thomas Mueller committed
12
location.href = 'main.html';
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
</script>
</head>
<body style="margin: 20px;">

<h1>H2 Database Engine</h1>
<p>
Welcome to H2, the free SQL database. The main feature of H2 are:
</p>
<ul>
<li>It is free to use for everybody, source code is included
</li><li>Written in Java, but also available as native executable
</li><li>JDBC and (partial) ODBC API
</li><li>Embedded and client/server modes
</li><li>Clustering is supported
</li><li>A web client is included
</li></ul>

<h2>No Javascript</h2>
<p>
If you are not automatically redirected to the main page, then
Javascript is currently disabled or your browser does not support Javascript.
Some features (for example the integrated search) require Javascript.
</p><p>
Please enable Javascript, or go ahead without it:
<a href="main.html" style="font-size: 16px; font-weight: bold">H2 Database Engine</a>
</p>

40
</body></html>