-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnewproducts.html
59 lines (57 loc) · 2.01 KB
/
newproducts.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
<!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="./seller.css">
</head>
<body>
<header>
<nav class="container">
<a href="#" class="logo"><img src="/books webstie/image/logo.png" alt="" width="150px"></a>
<div class="links">
<ul>
<li>
<a href="" class="nav-link">Home</a>
</li>
<li>
<a href="" class="nav-link">Add Product</a>
</li>
<li>
<a href="" class="nav-link">Orders</a>
</li>
<a href="#">Logout</a>
</ul>
</div>
</nav>
</header>
<main>
<section>
<div class="split left">
<div class="centered">
<input type="image" src="" alt="">
</div>
</div>
<div class="split right">
<div class="centered">
<img src="./assets/avatar.png" alt="">
<h2>Hey Seller.</h2>
<p><form>
<input type="text" value="Product Name">
<input type="text" value="Brand Name">
<input type="number" value="Price(Rs.)">
<input type="number" value="Discout %">
<input type="number" value="Number of Items.">
<input type="text" value="Product Color">
<input type="text" value="Product Description">
</form>
</p>
</div>
</div>
</section>
<input type="button" value="Submit">
</main>
</body>
</html>