1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 13:08:45 +00:00
serenity/Base/www/index.html
electrikmilk 3217b34f5c Base: Improve default WebServer pages
Add some fancy stuff like semantic tags, styling and the ladyball to
the default web server pages :^).
2022-02-23 21:28:17 +00:00

63 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Serenity WebServer Start Page!</title>
<style>
body {
font-size: 16px;
line-height: 1.6;
background: #ababab;
}
main {
background: #ffffff;
width: 500px;
border: 1px solid #000000;
padding: 10px;
margin: 0 auto;
}
header {
text-align: center;
}
.banner {
background: #ababab;
color: white;
font-weight: bold;
text-align: center;
padding: 5px 0;
}
.banner.it-works {
background: #ab6e4aff;
}
section {
margin: 5px 0;
}
</style>
</head>
<body>
<main>
<header>
<img src="ladyball.png" />
<h1>Serenity WebServer Start Page!</h1>
</header>
<p class="banner it-works">It works!</p>
<hr />
<section>
<p class="banner">Congratulations!</p>
<p>
If you are reading this in a browser, I think we may have succeeded!
Unless of course you just loaded the local file in your browser
(cheater!) :^)
</p>
<p>Try this <a href="other.html">link</a> to another page!</p>
</section>
</main>
</body>
</html>