mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 02:55:49 +03:00
26 lines
567 B
HTML
26 lines
567 B
HTML
<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>
|