Toggle navigation
Toggle navigation
This project
Loading...
Sign in
서현석
/
WebServicePrograming
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
서현석
2017-03-23 13:59:52 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0efda40d8659978598e0e704b3ccb8526d370177
0efda40d
1 parent
d363d642
html exercise04
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
0 deletions
html_ex04.html
html_ex04.html
0 → 100644
View file @
0efda40
<!DOCTYPE html>
<html
lang=
"ko"
>
<head>
<meta
charset=
"utf-8"
>
</head>
<body>
<form>
<table
border=
"1"
>
<thead>
<tr>
<input
type=
"hidden"
name=
"type"
value=
"user"
/>
<th>
아이디
</th>
<td>
<input
type=
"text"
name=
"name"
size=
"10"
/>
<input
type=
"button"
value=
"중복조회"
/>
</td>
</tr>
</thead>
<tbody>
<tr>
<th>
비밀번호
</th>
<td>
<input
type=
"password"
name=
"pwd"
size=
"10"
/></td>
<th>
확인
</th>
<td>
<input
type=
"password"
name=
"pwd"
size=
"10"
/></td>
</tr>
<tr>
<th>
이메일
</th>
<td><input
type=
"email"
name=
"email"
size=
"20"
/>
</td>
</tr>
<tr>
<th>
성별
</th>
<td>
<input
type=
"radio"
name=
"sex"
value=
"m"
/>
남
<input
type=
"radio"
name=
"sex"
value=
"f"
/>
여
</td>
</tr>
<th>
지역
</th>
<td>
<select
name=
"address"
>
<option
value=
"seoul"
>
서울
</option>
<option
value=
"busan"
>
부산
</option>
<option
value=
"busan"
>
기타
</option>
</select>
</td>
</tbody>
<tfoot>
<tr>
<td
colspan=
"4"
>
<input
type=
"checkbox"
name=
"agree"
value=
"agree"
/>
약관에 동의합니다.
</td>
</tr>
</tfoot>
</table>
<input
type=
"submit"
/>
</form>
</body>
</html>
Please
register
or
login
to post a comment