index.jsp 388 Bytes
Newer Older
Jose Baez committed
1
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
    <!DOCTYPE html>
    <html>

    <head>
        <title>JSP - Hello World</title>
    </head>

    <body>
        <h1>
            <%= "Hello World!" %>
        </h1>
        <br/>
        <a href="hello-servlet">Hello Servlet</a><br>
        <a href="./formulario.html">Postulate aqui</a>
    </body>

    </html>