33 lines
741 B
HTML
33 lines
741 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>Everything Kubernetes static Web content example</TITLE>
|
|
<STYLE type="text/css">
|
|
<!--
|
|
body {
|
|
min-height: 100vh;
|
|
background: #000000 url("/ek_logo.png") center center no-repeat fixed;
|
|
background-size: 50%;
|
|
}
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
p {
|
|
position: absolute;
|
|
bottom: 0px;
|
|
width: 100%;
|
|
color: #ffffff;
|
|
opacity: 1;
|
|
text-align: center;
|
|
}
|
|
-->
|
|
</STYLE>
|
|
</HEAD>
|
|
<BODY>
|
|
<p>Everything Kubernetes - Static Web Page Example</p>
|
|
</BODY>
|
|
</HTML>
|
|
|