-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact.html
119 lines (114 loc) · 4.65 KB
/
contact.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
<!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">
<title>Document</title>
</head>
<style>
body>div{
display: flex;
height: auto;
/* border: 2px solid black; */
gap: 40px;
}
#option{
height: 325px;
width: 20%;
margin-top: 100px;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
margin-left: 50px;
padding-top: 20px;
}
#on{
height: auto;
width: 70%;
margin-top: 100px;
/* border: 2px solid black; */
}
H3{
margin-top: -3px;
padding-left: 50px;
}
h3:hover{
background-color: antiquewhite;
}
/* h1 {
text-align: center;
} */
#SP{
margin-top: 70PX;
}
#s{
margin-top: 30px;
}
#form{
width: 90%;
}
input{
width: 90%;
height: 30px;
margin-bottom: 30px;
}
#e{
width: 100%;
height: 30px;
margin-bottom: 30px;
}
#k{
width: 100%;
height: 300px;
margin-bottom: 30px;
border: 2px solid black;
border-radius: 20px;
}
#s{
width: 100%;
background-color: orange;
cursor: pointer;
border: 0;
}
</style>
<body>
<div>
<div id="option">
<h3><a href="index.html">Shopping</a> </h3>
<h3><a href="faq.html">FAQ</a> </h3>
<h3><a href="what.html">What is MeanBuy</a> </h3>
<h3><a href="pro.html">Our Promise</a> </h3>
<h3><a href="contact.html">Countact Us</a> </h3>
<h3><a href="shipping.html">Shipping & Returns</a> </h3>
<h3><a href="privicy.html">Privicy Policy</a> </h3>
</div>
<!-- 2 -->
<div id="on">
<h1>Contact Us</h1>
<P>A product promise is the implied commitment made to customers by a company. It embodies everything that the company, brand, marketing, features and benefits and product description convey. meanbuy@gmail.com</P>
<P id="SP">MeanBuy is the future of online shopping; we let our customers Pay What They Want to Pay on a variety of retail products, ranging from women’s accessories to consumer electronics on MeanBuy.com. Our disruptive, patent pending flexible pricing technology is based on multi-dimensional consumer behaviorism exemplified by today’s online shopper. .</P>
<P>When we don't keep a promise to someone, it communicates to that person that we don't value him or her. We have chosen to put something else ahead of our commitment. Even when we break small promises, others learn that they cannot count on us. Tiny fissures develop in our relationships marked by broken promises. whatsapp-90876554323</P>
<P>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab officiis odio sequi doloribus autem facere vero inventore dolor est earum cumque voluptatem modi veniam iure incidunt, beatae dicta cum,.</P>
<P>A brand promise is a value or experience a company's customers can expect to receive every single time they interact with that company. The more a company can deliver on that promise, the stronger the brand value in the mind of customers and employees</P>
<h3>Meanbuy.com takes data protection very serious .If for any reason , you would like your personal data deleted,piease rreach out via the form below.</h3>
<div>
<form id="form">
<label>Name</label>
<input id="e" type="text" placeholder="Enter Name" minlength="5" required />
<label>Email</label>
<input id="e" type="email" placeholder="Enter Email" required />
<select id="e" >
<option value="">General Quation</option>
<option value="">Shipping Quation</option>
<option value="">Returns and Refunds Quation</option>
<option value="">Improving Service</option>
<option value="">Other Quations</option>
</select>
<label for="">Message</label>
<input type="text" id="k">
<input id="s" type="submit" value="SEND" />
</form>
</div>
</div>
</div>
</body>
</html>