kiwi-scp/example/hello_world/web/index.html

31 lines
786 B
HTML
Raw Normal View History

2020-08-24 12:49:39 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Hello kiwi!</title>
<style>
body {
width: 50em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
2020-08-26 11:56:51 +00:00
<h2>kiwi-scp works.</h2>
2020-08-24 12:49:39 +00:00
2020-08-26 11:56:51 +00:00
<p>This is an example service on a custom image assembled by kiwi-scp.<br /> But wait, there's more!</p>
2020-08-24 12:49:39 +00:00
<a href="//localhost:8081"><h3>Adminer</h3></a>
<p>There's a mySQL database included in this project. Login with user <q>root</q> and password <q>changeme</q>.</p>
<a href="//localhost:8082"><h3>Another hello world</h3></a>
<p>Another web server, built in a different way.</p>
<p><em>Greetings, nginx.</em></p>
</body>
</html>