-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrefund.php
148 lines (121 loc) · 6.01 KB
/
refund.php
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Enter a proper page title here -->
<title>Refund & Cancellation Policy | BULKDATABASE PROVIDER</title>
<!-- CSS to include bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- css to include style.css -->
<link rel="stylesheet" href="css/style.css">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<!-- required meta tags essential for seo and link sharing -->
<!-- Enter a proper description for the page in the meta description tag -->
<meta name="description" content="ENTER_PAGE_DESCRIPTION">
<!-- Enter a keywords for the page in tag -->
<meta name="Keywords" content="ENTER_KEYWORDS_HERE">
<!-- Enter Page title -->
<meta property="og:title" content="ENTER_PAGE_TITLE" />
<!-- Enter Page URL -->
<meta property="og:url" content="ENTER_PAGE_URL" />
<!-- Enter page description -->
<meta property="og:description" content="ENTER_PAGE_DESCRIPTION">
<!-- Enter Logo image URL for example : http://cryptonite.finstreet.in/images/cryptonitepost.png -->
<meta property="og:image" itemprop="image" content="ENTER_IMAGE_URL" />
<meta property="og:image:secure_url" itemprop="image" content="ENTER_IMAGE_URL" />
<meta property="og:image:width" content="600">
<meta property="og:image:height" content="315">
<meta property="og:type" content="website" />
<!-- Favicon location for example : images/cropped-Fin-270x270.jpg -->
<link rel="icon" href="ENTER_FAVICON_LOCATION">
<!-- Enter Page Specific CSS here. Please make sure all the CSS -->
<style>
/* Example CSS */
/*.link {
position: relative;
display: inline-block;
}
.link .tip {
opacity: 1;
color: #fff;
text-align: center;
padding: 5px 0;
position: absolute;
z-index: 1000;
top: -5px;
right: 105%;
transition: 0.5s ease;
overflow: hidden;
margin-right: 20px;
}*/
</style>
</head>
<body>
<div class="d-none d-lg-block">
<!-- desktop header start -->
<div id="header-desktop"></div>
<!-- desktop header end -->
<!-- second bar start -->
<div class="container" style="border-top: 1px solid rgb(221, 221, 221); padding: 20px 0px;">
<div style="width:100%;" class="hello">
<h1 style="color:#2b2b2b; font-size: 1.25em;border-bottom: 2px solid rgba(0,0,0,0.1);padding-bottom: 7.5px; font-weight:700; margin:0px 0px 24px;" class="font-Lato-Regular">
REFUND & CANCELLATION POLICY
</h1>
<p class="font-Lato-Regular" style="color:#2b2b2b; margin:0px 0px 20.8px;margin-top: 50px;">
However, digital products can’t usually be returned, as they’re downloadable, licensed, or accessed on a subscription basis.
</p>
<p class="font-Lato-Regular" style="color:#2b2b2b; margin:0px 0px 20.8px">
The way our organization operates has it that, failure to specify and buying from DataExport.com, eventually you’ve got downloaded our products it’ll not be returned hereafter you’ve got purchased.
</p>
<p class="font-Lato-Regular" style="color:#2b2b2b; margin:0px 0px 20.8px">
In case of failure download of digital product, you’ll <a href="contact">contact us</a> with this link.
</p>
</div>
</div>
<!-- second bar end -->
<!-- desktop footer start -->
<div id="footer-desktop"></div>
<!-- deskop footer end -->
</div>
<!-- mobile view -->
<div class="d-lg-none position-relative">
<!-- mobile view header start -->
<div id="header-mob"></div>
<!-- mobile view header end -->
<!-- second bar start -->
<div class="container" style="border-top: 1px solid rgb(221, 221, 221); padding: 20px 0px;">
<div style="width:100%;padding: 0 15px 30px;" >
<h1 style="color:#2b2b2b; font-size: 16px;border-bottom: 2px solid rgba(0,0,0,0.1);padding-bottom: 7.5px; font-weight:700; margin:0px 0px 24px;" class="font-Lato-Regular">
REFUND & CANCELLATION POLICY
</h1>
<p class="font-Lato-Regular" style="color:#2b2b2b; margin:0px 0px 20.8px;margin-top: 50px;">
However, digital products can’t usually be returned, as they’re downloadable, licensed, or accessed on a subscription basis.
</p>
<p class="font-Lato-Regular" style="color:#2b2b2b; margin:0px 0px 20.8px">
The way our organization operates has it that, failure to specify and buying from DataExport.com, eventually you’ve got downloaded our products it’ll not be returned hereafter you’ve got purchased.
</p>
<p class="font-Lato-Regular" style="color:#2b2b2b; margin:0px 0px 20.8px">
In case of failure download of digital product, you’ll <a href="contact">contact us</a> with this link.
</p>
</div>
</div>
<!-- mobile view footer -->
<div id="footer-mob"></div>
<!-- mobile view footer end -->
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/custom_mobile_header.js"></script>
<script>
// Add custom javascript and jquery here
// including header footer
$("#header-desktop").load('template/header.php');
$("#footer-desktop").load('template/footer.php');
$("#footer-mob").load('template/footerMob.php');
$("#header-mob").load('template/headerMob.php');
</script>
</body>
</html>