<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <title>Simple JSP Program</title> </head> <body> <h2>Welcome to My First JSP Program!</h2> <% // Declaring a simple variable String userName = "User"; // Getting the current date and time java.util.Date currentDate = new java.util.Date(); %> <p>Hello, <%= userName %>!</p> <p>Current Date and Time: <%= currentDate %></p> </body> </html>