Added content for simple static webpage example

This commit is contained in:
2023-07-18 18:55:05 -06:00
parent 1b43a2b17b
commit 23c69e940e
5 changed files with 88 additions and 0 deletions

BIN
www/ek_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

32
www/index.html Normal file
View File

@@ -0,0 +1,32 @@
<!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>