-
Notifications
You must be signed in to change notification settings - Fork 3
/
sell2.html
95 lines (94 loc) · 2.93 KB
/
sell2.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
<!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>
<link rel="stylesheet" href="./style/sell2.css" />
</head>
<body>
<div id="mainBox">
<h1>POST YOUR AD</h1>
<div id="inner">
<div id="box">
<!-- category -->
<div id="category">
<h2>SELECT CATEGORY</h2>
<p>Category</p>
<input type="text" id="inp-car"/>
</div>
<!-- details -->
<div id="details">
<h3>INCLUDE SOME DETAILS</h3>
<form id="btn-post">
<p>Brand*</p>
<input type="text" id="inp-brand" />
<p>Model*</p>
<input type="text" id="inp-model" />
<p>Color</p>
<input type="text" id="inp-color" />
<p>Condition</p>
<input type="text" id="inp-condition"/>
<p>KM Driven</p>
<input type="text" id="inp-km"/>
<p>Year*</p>
<input type="text" id="inp-year" />
<p>Fuel Type*</p>
<input type="text" id="inp-fuel" />
<div id="uploadImages">
<p>Upload Images</p>
<input type="text" placeholder="Select files" id="inp-img1">
<input type="text" placeholder="Select files" id="inp-img2">
<input type="text" placeholder="Select files"id="inp-img3">
<input type="text" placeholder="Select files">
</div>
<!-- <div>
<p>Transmission*</p>
<button id="inp-manual">Manual</button>
<button id="inp-auto">Automatic</button>
</div> -->
<!-- <br /> -->
<h3>SET PRICE*</h3>
<p>Price</p>
<input type="text" placeholder="₹ |" id="inp-price"/>
<!-- <br /> -->
<!-- <div>
<h3>CONFIRM YOUR LOCATION</h3>
<p>State*</p>
<input type="text">
<p>City*</p>
<input type="text">
</div> -->
<div id="UserDetails">
<h3>REVIEW YOUR DETAILS</h3>
<p>Name*</p>
<input type="text" id="inp-name"/>
<p>City*</p>
<input type="text" id="inp-city" />
<p>State*</p>
<input type="text" id="inp-state"/>
</div>
<br />
<button >POST NOW</button>
</form>
</div>
</div>
</div>
</div>
<!-- footer -->
<footer>
<div id="foot">
<div>
<h4>Other Countries</h4>
<p>Indonesia-Pakistan-South Africa</p>
</div>
<div>
<h4>Free Classifieds in India .©</h4>
<p>2006-2023 HOLA-EX</p>
</div>
</div>
</footer>
<script src="./script/sell2.js"></script>
</body>
</html>