-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththankyou.html
60 lines (49 loc) · 2.18 KB
/
thankyou.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- The <title> tag in HTML is used to define the title of HTML document. -->
<title>Swag of India-Thank you</title>
<!-- A favicon is a small file containing the one or more icons which are used to represent the website or a blog. It is also known as a tab icon, website icon, URL icon, or a bookmark icon. -->
<link rel="icon" type="image/png" href="images\flavicon.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css"
integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<!-- add a link to use an external style sheet -->
<link rel="stylesheet" href="./css/thankyou.css">
</head>
<body>
<!-- This is thank you card box -->
<div class="container-fluid">
<div class="card-box">
<!-- logo of swag of india -->
<a href="./index.html"> <img src="images\logo.png" alt="swagofindia logo"></a>
<!-- This is greeting for purchasing products -->
<div class="thankyou-area">
<h1>THANK YOU</h1>
<p>FOR PURCHASING FROM US</p>
</div>
<!-- this is discount area -->
<div class="discount-area">
<div class="legend-top">ENJOY</div>
<h1>15% OFF</h1>
<div class="legend-bottom">ON YOUR NEXT ORDER</div>
</div>
<!-- this is coupon code area -->
<div class="coupon-area">
<p>Use Coupon Code: G34S0X1RFS</p>
<p>Limit one per customer</p>
</div>
</div>
</div>
<!-- jQuery and Bootstrap Bundle(includes Popper) -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" crossorigin="anonymous">
</script>
</body>
</html>