<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:if test="${condition}">
</c:if>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>Hello JSTL</title>
</head>
<body>
<c:set var="name" value="John" />
<c:if test="${name eq 'John'}">
<h1>Hello, ${name}!</h1>
</c:if>
</body>
</html>