-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuestion_Write.html
More file actions
63 lines (56 loc) · 1.57 KB
/
Copy pathQuestion_Write.html
File metadata and controls
63 lines (56 loc) · 1.57 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Question write</title>
<style>
@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);
body {
font-family: 'Nanum Gothic', sans-serif;
}
</style>
<script type="text/javascript">
function move(url) {
location.href=url;
}
</script>
</head>
<body>
<table summary="글쓰기 전체 테이블">
<form name="BoardWriteForm" method="post" action="Question_Write_action.php">
<colgroup>
<col width="20%">
<col width="80%">
</colgroup>
<table summary="테이블 구성" >
<caption>Write your Question</caption>
<tr>
<td>Author</td>
<td><input type="text" name="name" size="10" maxlength="8"></td>
</tr>
<tr>
<td>Title</td>
<td><input type="text" name="title"></td>
</tr>
<tr>
<td>Contents</td>
<td><textarea name="content" rows ="10" cols="100"></textarea></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="password" size="15" maxlength="15"></td>
</tr>
<tr>
<td colspan="2"><hr size="1"></td>
</tr>
<tr>
<td colspan="2"><div align="center">
<input type="submit" value="confirm" >
<input type="button" value="back" onclick="move('QandA.php');"></div>
</td>
</tr>
</table>
</form>
</table>
</body>
</html>