Advertisement
GameNCode

Contact Page JSP

Dec 14th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.50 KB | None | 0 0
  1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  2.    pageEncoding="ISO-8859-1"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  7. <title>Contact Us</title>
  8. <link rel="stylesheet" type="text/css" href="Style.css">
  9. </head>
  10. <body>
  11.                 <ul>
  12.                     <li><a href="index.jsp">Home</a></li>
  13.                     <li><a href="#news">News</a></li>
  14.                     <li><a href="#">Contact</a></li>
  15.                     <li><a href="About.jsp">About</a></li>
  16.         </ul>
  17.         <hr>
  18.         <h1>Contact Us</h1>
  19.         <br>
  20.         <hr>
  21.         <br>
  22.         <p>We always appreciate suggestions and reviews.</p>
  23.         <hr>
  24.         <h1>Contact Us Using Email</h1>
  25.     <form action="mailto:John.Doe@hotmail.com" method="post" enctype="text/plain">
  26.                 Your Name:<br>
  27.             <input type="text" name="name" placeholder="John Doe">
  28.                 <br>
  29.                 E-mail:
  30.                 <br>
  31.             <input type="text" name="mail" placeholder="example@email.com">
  32.                 <br>
  33.                 Message:
  34.                 <br>
  35.             <input type="text" name="comment" size="50" placeholder="OMG this website is amazing">
  36.             <br>
  37.             <br>
  38.             <input type="submit" value="Send">
  39.             <input type="reset" value="Reset Boxes">
  40.     </form>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement