aboutsummaryrefslogtreecommitdiff
path: root/samples/Groovy Server Pages/hello-pagedirective.gsp
blob: d632536d49cafb36c34aecf3ee76140e0c8d3b6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<%@ page contentType="text/html;charset=UTF-8" %>

<html>
  <head>
    <title>Using page directive tag</title>
  </head>
  <body>
        <div class="center">
            <a href="#" alt="Download" id="downloadButton">Download</a>
        </div>
        <div class="center">
            <a href="#" alt="Print" id="printButton">Print</a>
        </div>
  </body>
</html>