summaryrefslogtreecommitdiff
path: root/Base/home/anon/www/welcome.html
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-10-05 10:29:06 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-10-05 10:29:52 +0200
commit31e361b827191749013d94b085369e12e0d11196 (patch)
tree208d1a6d8b55a576dd6dc96ed2e1556ff557f564 /Base/home/anon/www/welcome.html
parent319f0d2d1866516f158f8b7f6b9382f3519fde88 (diff)
downloadserenity-31e361b827191749013d94b085369e12e0d11196.zip
Base: Add a little welcome page for the browser at ~/www/welcome.html
Diffstat (limited to 'Base/home/anon/www/welcome.html')
-rw-r--r--Base/home/anon/www/welcome.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/Base/home/anon/www/welcome.html b/Base/home/anon/www/welcome.html
new file mode 100644
index 0000000000..57380202b6
--- /dev/null
+++ b/Base/home/anon/www/welcome.html
@@ -0,0 +1,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>