<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>  
<html>
<head>
<title>The Student</title>
</head>
<body>
<center>
   <font size="+3"><b>The Name is  <c:out value=" ${student.name}" /> </font><br />
   <font size="+3"><b>The Year is <c:out value=" ${student.year}" /> </font><br />
</center>
</body>
</html>