-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
26 lines (26 loc) · 1010 Bytes
/
options.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css" media="all">
table { margin:15px 0; width:98%; border: 1px solid black; border-collapse: collapse;}
table td,th { border: 1px solid black; width:30%;}
span { display:block;line-height:100%;}
tbody td { padding-left: 3px; padding-right: 3px;}
table td input { width:98%; }
table a { float:left; margin:0 3px; }
input.btn { max-width:100px; display:inline; margin-right: 15px; }
</style>
<script type="text/javascript" src="options.js"></script>
</head>
<body>
<table id="sitesoptionstable">
<thead>
<tr id="tablehead"><th id="thsite">site</th><th id="pre">previous page</th><th id="next">next page</th><th id="op">operation</th></tr>
</thead>
<tbody id="sitesoptions"></tbody>
</table>
<input class="btn" type="button" id="btnadd" value="Add" />
<input class="btn" type="button" id="btnsave" value="Save" />
</body>
</html>