-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshjs.html
More file actions
71 lines (71 loc) · 2.63 KB
/
shjs.html
File metadata and controls
71 lines (71 loc) · 2.63 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sell Your Old Products</title>
<link rel="stylesheet" href="pro.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<script src="pro.js"></script>
</head>
<body>
<div class="container">
<h1 class="heading">Sell Your Old Products</h1>
<form id="sellForm">
<div class="tv">
<h1>T.V.</h1>
<img src="tv1.png" alt="">
<p>
Enter Brand Name:
<input type="text" name="tvBrand" placeholder="BrandName"><br>
Enter Quantity:
<input type="number" name="tvQty">
</p>
</div>
<div class="lap">
<h1>Laptop</h1>
<img src="lap1.png" alt="">
<p>
Enter Brand Name:
<input type="text" name="laptopBrand" placeholder="BrandName"><br>
Enter Quantity:
<input type="number" name="laptopQty">
</p>
</div>
<div class="mob">
<h1>SmartPhone</h1>
<img src="mob1.png" alt="">
<p>
Enter Brand Name:
<input type="text" name="mobileBrand" placeholder="BrandName"><br>
Enter Quantity:
<input type="number" name="mobileQty">
</p>
</div>
<div class="washing-machine">
<h1>Washing Machine</h1>
<img src="wash.png" alt="">
<p>
Enter Brand Name:
<input type="text" name="washBrand" placeholder="BrandName"><br>
Enter Quantity:
<input type="number" name="washQty">
</p>
</div>
<div class="others">
<h1>Others</h1>
<img src="others.png" alt="">
<p>
Enter Brand Name:
<input type="text" name="otherBrand" placeholder="BrandName"><br>
Enter Quantity:
<input type="number" name="otherQty">
</p>
</div>
<p>Description...</p>
<textarea name="description" id="description" placeholder="Enter description"></textarea>
<br><br>
<button type="button" onclick="submitForm()">Submit</button>
</form>
</div>
</body>
</html>