forked from shrikantdaund0693/Website_Restaurant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirmed_order.html
More file actions
31 lines (31 loc) · 1.1 KB
/
confirmed_order.html
File metadata and controls
31 lines (31 loc) · 1.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thanks for Visiting!</title>
<script src="./assets/jQuery.js"></script>
<link rel="stylesheet" href="./assets/bootstrap/css/bootstrap.min.css">
<script src="./assets/bootstrap/js/bootstrap.min.js"></script>
<link rel="icon"
type="image/png"
href="./assets/images/favicon.png">
<link rel="stylesheet" href="./assets/style3.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="confirm">
<h1 class="text-center">Order Confirmation</h1>
<img src="./assets/images/confirm.png" alt="img_confirm">
<p>Thank You For Ordering Food With us</p>
<p>Visit Again...</p>
<p>Order Status :<span class="badge badge-danger">Confirmed</span></p>
<button class="btn btn-info">
<a href="index.html">Back to Home</a>
</button>
</div>
</div>
</div>
</body>
</html>