-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile.html
75 lines (74 loc) · 2.25 KB
/
file.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
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"> </script>
</head>
<body>
<div class="outer">
<div class="prod-logo">
<img src="https://github.com/abhinanduN/codepen/blob/master/prod.png?raw=true" class="prod-img" alt="icon"/>
<ul class="main-nav">
<li class="nav-li"><a href="index.html">Home</a></li>
<li class="nav-li"><a href="#">About</a></li>
<li class="nav-li"><a href="file.html">Manufacture Details</a></li>
<li class="nav-li"><a href="tc.html">Transport Detail</a></li>
<li class="nav-li"><a href="view.html">Track product</a></li>
</ul>
</div>
<div class="inner">
<div class="prod-left">
<center>
<div>
<form height=100% width=100% align="center" >
<table align="center">
<tr> <th>
Batch Number </th> <td><input type = "text" name = "id" placeholder="ID1234"/>
<br></td>
</tr>
<tr><th>
Company Name
</th>
<td>
<input type = "text" name = "cname" />
<br>
</td>
<tr><th> Manufacturing Date</th>
<td> <input type = "text" name = "mfd" placeholder="dd/mm/yyyy"/>
<br></td></tr>
<tr><th> Expiry Date</th>
<td><input type = "text" name = "exp" placeholder="dd/mm/yyyy"/>
<br></td></tr>
<tr>
<th>
Price
</th>
<td>
<input type = "text" name = "price" />
<br>
</td>
</tr>
</table>
<input type="submit" value="Submit">
</form>
</div>
</center>
</body>
</div>
<div class="prod-right">
<img src="https://github.com/abhinanduN/codepen/blob/master/human-image.png?raw=true" class="prod-human-img" alt="prod"/>
</div>
</div>
</div>
<script>
$(".prod-logo").hover(function () {
$(".inner").addClass("inner-hover");
$(".nav-li").slideDown(500);
},
function () {
$(".inner").removeClass("inner-hover");
$(".nav-li").slideUp(500);
}
);
</script>
</body>
</html>