template-original.html
- Download original.html (Right-click and Save Link As...)
<!DOCTYPE html>
<html>
<head>
<title>JSP Simple Template Example</title>
</head>
<body>
<div style="border:medium solid red;margin:10px;">
<p>This is the header block.</p>
</div>
<div style="border:medium dashed blue;margin:10px;">
<p>This is the content block.</p>
</div>
<div style="border:medium dotted green;margin:10px;">
<p>This is the footer block.</p>
</div>
<p><a href="/java112">Home</a></p>
</body>
</html>