-
Notifications
You must be signed in to change notification settings - Fork 0
/
thanku.html
32 lines (26 loc) · 1.02 KB
/
thanku.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Thank You</title>
<!-- Bootstrap stylesheet -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- css stylesheet -->
<link rel="stylesheet" type="text/css" href="thanku.css">
<!-- Font Awesome for apple/play logo -->
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
</head>
<body>
<img class="nmskr" src="images/nmskr.png">
<h1>Thank You for Ordering from Us !</h1>
<i class=" icon fas fa-check-circle"></i>
<h4>Your order has been successfully Ordered and <br> it will delivers to you within a Hour!</h4>
<h4 class="h4_pva">Please visit again !!</h4>
<button class="btn btn-outline-success btn-lg" onclick="home()">Go to Home</button>
<script type="text/javascript">
function home(){
window.location.href = "index.html";
}
</script>
</body>
</html>