mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-06 13:35:03 +00:00
This server listens on port 8000 and serves HTML files from /www. It's very simple and quite naive, but I think we can start here and build our way to something pretty neat. Work towards #792.
17 lines
399 B
HTML
17 lines
399 B
HTML
<!DOCTYPE>
|
|
<html>
|
|
<head><title>WebServer other page!</title></head>
|
|
<body>
|
|
<h1>SerenityOS WebServer other page!</h1>
|
|
<p>
|
|
<b>Holy moly!</b>
|
|
</p>
|
|
<p>
|
|
This is not even index.html, how neat is that! :^)
|
|
</p>
|
|
<p>
|
|
Maybe you want to go <a href="index.html">back to index.html</a>?
|
|
</p>
|
|
</body>
|
|
</html>
|