-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
50 lines (46 loc) · 1.15 KB
/
forms.html
File metadata and controls
50 lines (46 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="forms.css" />
<title>Forms</title>
</head>
<body>
<form action="">
<div class="div1">
<label>name</label>
<input id="name" type="text" name="name" />
<br />
<br />
<label>salary</label>
<input id="sal" type="number" name="sal" />
<br />
<br />
<label>age</label>
<input id="age" type="number" name="age" />
<br />
<br />
<label>Image</label>
<input id="img" type="url" name="img" />
<br />
<br />
<button id="btn1" type="button">Add Row</button>
<br />
<br />
</form>
<table id="tb">
<tr>
<th>Serial No</th>
<th>Name</th>
<th>Salary</th>
<th>Age</th>
<th>Image</th>
<th>Action1</th>
<th>Action2</th>
<!-- <th><button id="btn3" type="button">delete</button></th> -->
</tr>
</table>
</div>
<script type="text/javascript" src="jquery-3.7.1.js"></script>
<script src="./formsjs.js"></script>
</body>
</html>