<%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="css/style.css"/> <title>Awesome Web Site</title> </head> <body> <div id="content"> <%@include file="/WEB-INF/jspf/menu.jspf" %> <% String user = (String) session.getAttribute("user");%> <h1>Welcome back <%=user%></h1> <img src="trump.jpg"> </div> </body> </html>