-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
129 lines (128 loc) · 5.05 KB
/
services.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Sellify</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
/>
<link rel="stylesheet" type="text/css" href="css/styles.css" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container">
<a class="navbar-brand" href="#">Sellify</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav ml-auto">
<a class="nav-item nav-link" href="./index.html">Home</a>
<a class="nav-item nav-link" href="./buy.html">Buy</a>
<a class="nav-item nav-link" href="./sell.html">Sell</a>
<a class="nav-item nav-link active" href="">Services</a>
<a class="nav-item nav-link" href="./contact.html">Contact</a>
<a class="nav-item nav-link" href="./about.html">About</a>
</div>
</div>
</div>
</nav>
<main>
<div class="container items">
<div class="row row-content">
<div class="col-sm-10 offset-1">
<h1>Features:</h1>
<h3 class="gap">24/7 Support:</h3>
A lot of websites these days fail to provide support or helpline to
its users which is a major flaw in the design on an e-commerce
website. Hence, we here at Sellify promise to provide the ebst
support to its users at all times.
<h3 class="gap">Refunds:</h3>
There is a huge list of scammers running wild in the internet, we
ensure to protect you from such people. We will give upto 100%
refunds on the products dealt on our site. But there is sometimes a
chance of fraud so the product will be thorougly checked before
giving the refund. Upto 90% refund is gaurenteed.
<h3 class="gap">Discounts:</h3>
We will also give discounts on the products. Out discounts range
from 20% upto a shocking 60%. You can now buy a new phone at 50%
rates. This is the first time in the history of mobile phones such a
thing is possible.
<h3 class="gap">Free Delivery:</h3>
We also ensure to provide free delivery without charging you extra
for delivery. This will be taken care of by us. We gaurentee to
deliver products within 3 days. If we fail to do such then you may
keep the product for free without any charges.
</div>
</div>
<div class="row row-content">
<div class="offset-1">
<div class="card">
<h3 class="card-header bg-primary text-white">Out Statistics</h3>
<div class="card-body">
<dl class="row">
<dt class="col-6">Delivery</dt>
<dd class="col-6">3 Days GAURENTEED</dd>
<dt class="col-6">Total Products Sold</dt>
<dd class="col-6">50,679 till date.</dd>
<dt class="col-6">Total users</dt>
<dd class="col-6">1,250,375</dd>
</dl>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<div class="row row-footer footer">
<div class="col-4 col-sm-2 offset-1">
<strong>Links</strong>
<br />
<ul class="list-unstyled">
<li><a href="./index.html">Home</a></li>
<li><a href="./buy.html">Buy</a></li>
<li><a href="./sell.html">Sell</a></li>
<li><a href="">Services</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href="./about.html">About</a></li>
</ul>
</div>
<div class="col-sm-8">
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Eum sequi
assumenda temporibus accusamus, iure nemo magni amet adipisci cumque
itaque enim delectus porro dignissimos dolorum, soluta, suscipit
veniam laboriosam? Laudantium! Lorem ipsum dolor, sit amet
consectetur adipisicing elit. Dolorum quisquam minima tenetur
nostrum sapiente. A enim iusto obcaecati est quasi, earum quod
recusandae labore autem rem soluta, officiis ab rerum. Lorem ipsum
dolor sit amet, consectetur adipisicing elit. Qui atque dolor magnam
unde nobis excepturi iste reprehenderit dignissimos corporis impedit
eaque rem, quibusdam dolorem ut enim error tenetur esse molestias.
</div>
</div>
<div class="row justify-content-center footer">
<div class="col-auto">
<hr />
<p>© Copyright 2018 | Project by Godnon Dsilva</p>
</div>
</div>
</div>
</footer>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</html>