Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

JSP+MySql+Hibernate

menu.jsp

<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>


<!doctype html>
<html>
<head>
<link rel="stylesheet"
href="<c:url value="/resources/css/bootstrap.min.css"/>" />

</head>
<body>

<nav class="navbar navbar-expand-sm bg-dark">

<ul class="navbar-nav">
<li class="nav-item ">
<a class="nav-link" href="home.jsp">Home</a>
</li>
</ul>
</nav>

</body>
</html>

home.jsp

<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>


<!doctype html>
<html>
<head>
<link rel="stylesheet" href="<c:url value="/resources/css/bootstrap.min.css"/>" />

</head>
<body>
<%@ include file="menu.jsp"%>

1 |H i b e r n a t e
<div class="container">

<h1>My Home Page</h1>


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

2 |H i b e r n a t e

You might also like