forked from ajithajiy/ajiy.github.lo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (37 loc) · 1.16 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
48
49
50
51
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="utf-8">
<title>
form page
</title>
</head>
<body >
<div class="header">
<h1 >form page</h1>
</div>
<form name='newpage'>
<div>
<input type="text" name="tbox" id="tbox" placeholder="name"/>
<select id="db">
<option value="text">text</option>
<option value="password">password</option>
<option value="email">email</option>
<option value="checkbox">checkbox</option>
</select>
<input id="btnAdd" type="button" value="add" onclick="check()" />
<br />
<br />
<div id="TextBoxContainer">
</div>
<br />
<input type="button" name="post" value="Post" id="post" onclick="posted()" />
<input type="button" value="Generate Table" onclick="myTable()" />
<table id="myTable">
</table>
<br/>
</div>
</form>
</body>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="form1.js"></script>
</html>