-
Notifications
You must be signed in to change notification settings - Fork 0
/
cont.html
78 lines (78 loc) · 2.14 KB
/
cont.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>cont</title>
<style>
.text_H { width:298px; height:150px; }
.submit { position:absolute; bottom:0; left:3px; height:30px; width:304px; }
table { width:300px; height:400px; position:relative; border:1px solid gray; }
th { text-align:left; width:100%; padding:10px 10px; height:20px; line-height:20px; }
td { text-align:center; width:100%; height:20px; line-height:20px; }
select { text-align-last:center; background: #eee; color:#000; }
</style>
</head>
<body>
<form method="post">
<table>
<thead>
<tr>
<th colspan="4">~월~일 예약</th>
</tr>
</thead>
<tbody>
<tr>
<th>학생이름</th>
<td colspan="2">홍길동<!-- data input --></td>
</tr>
<tr>
<th>수강과목</th>
<td colspan="2">JAVA<!-- data input --></td>
</tr>
<tr>
<th rowspan="2">보충시간</th>
</tr>
<tr>
<td>
<select name="Start_Time">
<option value="">Start</option> <!-- value : pass to server -->
<option value="11">11:00</option>
<option value="12">12:00</option>
<option value="13">13:00</option>
<option value="14">14:00</option>
<option value="15">15:00</option>
<option value="16">16:00</option>
<option value="17">17:00</option>
<option value="18">18:00</option>
<option value="19">19:00</option>
</select>
</td>
<td>
<select name="End_Time">
<option value="">End</option>
<option value="">12:00</option>
<option value="">13:00</option>
<option value="">14:00</option>
<option value="">15:00</option>
<option value="">16:00</option>
<option value="">17:00</option>
<option value="">18:00</option>
<option value="">19:00</option>
<option value="">20:00</option>
</select>
</td>
</tr>
<tr>
<th colspan="3">내용</th>
</tr>
<tr>
<td colspan="3"><textarea class="text_H"></textarea></td>
</tr>
<tr>
<td colspan="3"><input type="submit" value="수정" class="submit"/></td>
</tr>
</tbody>
</table>
</form>
</body>
</html>