Files

50 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2026-08-19 23:36:00 +08:00
<!DOCTYPE>
<html>
<head>
<title>Test Page</title>
<style>
body {
width: 100%;
}
header {
width: 100%;
text-align: center;
}
header>* {
width: 100%;
text-align: center;
}
main {
width: 100%;
text-align: center;
}
main>* {
width: 100%;
text-align: center;
}
footer {
width: 100%;
text-align: center;
}
footer>* {
width: 100%;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>Welcome to rust-http-server!</h1>
</header>
<main>
<p>The basic function of this server is working properly, if you are able to see this page.</p>
</main>
<footer>
<p>12Hydrogen 2026</p>
</footer>
</body>
</html>