-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lab07.html
38 lines (30 loc) · 1014 Bytes
/
Lab07.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
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0,width=device-width">
<title>Lab07</title>
<link href="css/Lab07.css" rel="stylesheet" />
</head>
<body>
<form>
<select id="sel1">
<option value="1">SELECT ONE</option>
<option value="2">CREATE TABLE</option>
<option value="3">ADD ROW</option>
<option value="4">DELETE ROW</option>
<option value="5">DELETE TABLE</option>
</select>
</form>
<input type="text" placeholder="Table Name" id="tableName" class="hide" value="">
<input type="number" placeholder="Columns Numbers" id="tableCol" min = 0 class="hide"><br>
<div id="div1">
</div>
<button type="button" name="button" id="btCom" class="hide">commit</button><br/><br/>
<select id="sel2">
<option id="default" value="0">SELECT (default: last created)</option>
</select>
<div id="tablediv">
</div>
<script src="js/Lab07.js" type="text/JavaScript"></script>
</body>
</html>