-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.jsp
47 lines (45 loc) · 1.62 KB
/
contact-us.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<%--
Document : contact-us
Created on : Sep 23, 2018, 4:48:43 PM
Author : Sumaiya
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body style="background: url('img/creme.jpg') no-repeat;background-size: cover">
<header>
<div class="container">
<div id="branding">
<h1><img src="./img/B.png" alt="B & B works" height="20%" width="100%"></h1>
</div>
<nav>
<ul>
<li ><a href="Home.html">About Us</a></li>
<li><a href="Product.html">Products</a></li>
<li><a href="ProductOrder.html">Product Order</a></li>
<li class="current"><a href="ContactUs.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<section id="main">
<div class="container" >
<aside id="sidebar-2">
<div class="dark">
<form class="feedback" action="contact-us.jsp">
<fieldset>
<legend><h2>Thank you ${param.Name} for your Feedback</h2></legend>
<h1>Form is successfully Submitted.</h1>
</fieldset>
</form>
</div>
</aside>
</div>
</section>
<jsp:include page="my-footer.html" />
</body>
</html>