-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
47 lines (44 loc) · 1.5 KB
/
index.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
<!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="index.css">
</head>
<body onload="load()">
<center>
<div id="ashu" >
<span >Details Form</span>
<hr id="hr">
<table id="main">
<tr>
<td class="a">Name:</td>
<td colspan="2"><input type="text" id="a" size="25" name="a" required></td>
</tr>
<tr>
<td class="a">Mob No.</td>
<td><input type="text" name ="b" id="b" size="25" required></td>
</tr>
<tr>
<td class="a">Email ID:</td>
<td><input type="text" name="c" id="c" size="25" required></td>
</tr>
<tr>
<td colspan="2" id="p"><button onclick="enable()">SUBMIT</Button></td>
</tr>
</table>
<hr>
<table id="append">
<tr>
<th style="width:100px;">Name</th>
<th style="width:100px;" >Mob.No</th>
<th style="width:100px;">Email ID</th>
</tr>
</table>
</div>
</center>
<script src="index.js"></script>
</body>
</html>