blob: 57380202b6ae740b3b23d175e80db27f1a81ba89 (
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
|
<html>
<head>
<title>Welcome!</title>
<style type="text/css">
body {
background-color: #ffffff;
color: #000000;
}
h1 {
color: #800000;
}
</style>
</head>
<body>
<h1>Welcome to the Serenity Browser!</h1>
<p>This is a very simple browser built on the LibHTML engine.</p>
<p>Some small test pages:</p>
<ul>
<li><a href="small.html">small</a></li>
<li><a href="css.html">css</a></li>
<li><a href="lorem.html">lorem ipsum</a></li>
<li><a href="phint.html">presentational hints</a></li>
</ul>
</body>
</html>
|