<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ page import="java.time.LocalDateTime" %>
<!DOCTYPE html>
<html>
    <head>
        <title>The quick brown fox</title>
    </head>
    <body>
        <h1>The quick brown fox jumps over the lazy dog!</h1>
        <h2>Current time is <%= LocalDateTime.now() %></h2>
    </body>
</html>
