12 lines
309 B
HTML
12 lines
309 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<h1>---Hello World!---</h1>
|
|
<p>This is a simple static website being served from Nginx running inside a Docker container!</p>
|
|
<script>
|
|
var date = document.lastModified;
|
|
document.write("Last Modified: "+date);
|
|
</script>
|
|
</body>
|
|
</html>
|