-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBecomeseller.html
111 lines (102 loc) · 3.5 KB
/
Becomeseller.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
<!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>Become our seller</title>
<link rel="stylesheet" href="Becomeseller.css" />
</head>
<body>
<div id="discount">
<h3>FOR ONLINE PAYMENT EXTRA ₹100 DISCOUNT ON ORDERS ABOVE ₹500</h3>
</div>
<!-- Header -->
<div id = "head">
<div id="search">
<input type="text" placeholder="Search Now...">
<button>GO</button>
</div>
<div id="logo">
<img src="https://www.uboric.com/wp-content/uploads/2021/04/uboric.svg" alt="Logo">
</div>
<div id="cart">
<a href="signup.html"><button>
Sign Up
</button></a>
<button>
<a href="cart.html">Cart</a>
</button>
</div>
</div>
<!-- Navbar -->
<div id="navbar">
<a href="Home.html"><div>Home</div></a>
<a href="Categ.html"><div>Categories 🔽</div></a>
<a href="Signin.html"><div>Customer/Guest login</div></a>
<a href="Merchent.html"><div>Merchant/Bulk Order</div></a>
<a href="Becomeseller.html"><div>Become A Seller</div></a>
</div>
<!-- My account -->
<div id="Myaccount">
<h1>Become a Seller</h1>
<p>Home <span>﹥ Become a Seller</span></p>
</div>
<!-- Main Fashion html -->
<div id="register">
<h1>Vendor Registration</h1>
<h4>Submit the form below to become a vendor on this store.</h4>
<p>Vendor Name * </p>
<input type="text" id="sellerName">
<p id="Note">Important: This is the name that customers see when purchasing your products. Please choose carefully.</p>
<p>Please describe something about your company and what you sell. *</p>
<input type="text" id="sellerdis">
<div id="panNo">
<p>Pan No</p>
<input type="text">
<p>GST No</p>
<input type="text">
</div>
<p>Contact No</p>
<input type="text" id="contect">
<br>
<button id="but">Register</button>
</div>
<!-- User Reveiw -->
<div id="user-review">
<h1>What Our Customer Says</h1>
<div id="user-f">
<div>
<h3>Many variteies and price range good shop</h3>
<p>Raj Zala</p>
<p>⭐⭐⭐⭐--Custumer</p>
</div>
<div>
<h3>I buys alot of shoes from this page and the page layout is easy to understant price is very low.</h3>
<p>Chunnu singh</p>
<p>⭐⭐⭐⭐⭐--Custumer</p>
</div>
<div>
<h3>My product is very dealy i am not happy with this shop</h3>
<p>chanchal verma</p>
<p>⭐--Custumer</p>
</div>
</div>
<button>Add Your Review</button>
</div>
<!-- Footer -->
<div id="footer">
<div><img src="https://www.uboric.com/wp-content/uploads/2020/08/google-play1.png"></div>
<div id="foot-f">
<h3>About Us</h3>
<h3>Contact</h3>
<h3>Shipping And Returns</h3>
<h3>My Account</h3>
<h3>Privacy Policy</h3>
<h3>Become A Seller</h3>
<h3>Term & Condition</h3>
</div>
<h3>© 2019 – 2021 UBORIC. ALL RIGHTS RESERVED.</h3>
</div>
</body>
</html>