DockerStaticSite/index.html

12 lines
309 B
HTML
Raw Normal View History

2021-02-05 14:37:41 +00:00
<!DOCTYPE html>
<html>
<body>
2021-02-05 17:11:29 +00:00
<h1>---Hello World!---</h1>
2021-02-05 14:37:41 +00:00
<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>