DockerStaticSite/index.html

12 lines
334 B
HTML
Raw Normal View History

2021-02-05 14:37:41 +00:00
<!DOCTYPE html>
<html>
<body>
2021-02-05 17:23:38 +00:00
<h1>Hello World! Hello World!</h1>
2021-02-05 18:42:23 +00:00
<p>style="color:red">This is a simple static website being served from Nginx running inside a Docker container!</p>
2021-02-05 14:37:41 +00:00
<script>
var date = document.lastModified;
document.write("Last Modified: "+date);
</script>
</body>
</html>