Newer
Older
jetty / deploy / index.jsp
<%@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" %>

			<h1>Welcome to our awesome web site!</h1>

			<div id="images">
				<img width="250" src="fake-cat.png" alt="Image of cat"/> <img width="250" src="fake-dog.png" alt="Image of dog"/>
			</div>

		</div>
	</body>
</html>