<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1.0"
>
<
meta
http-equiv
=
"X-UA-Compatible"
content
=
"ie=edge"
>
<
title
>表单</
title
>
</
head
>
<
body
>
<
form
action
=
""
method
=
"post"
>
<
p
>
<
label
for
=
""
>用户名:</
label
>
<
input
id
=
"xx"
type
=
"text"
placeholder
=
"请输入"
name
=
"username"
>
</
p
>
<
p
>
<
label
for
=
""
>密 码:</
label
>
<
input
type
=
"password"
name
=
"pwd"
>
</
p
>
<
p
>
<
label
for
=
""
>性 别:</
label
>
<
input
type
=
"radio"
name
=
"sex"
value
=
"0"
>男
<
input
type
=
"radio"
name
=
"sex"
value
=
"1"
>女
</
p
>
<
p
>
<
label
for
=
""
>爱 好:</
label
>
<
input
type
=
"checkbox"
name
=
"like"
value
=
"0"
>妹子
<
input
type
=
"checkbox"
name
=
"like"
value
=
"1"
>汉子
<
input
type
=
"checkbox"
name
=
"like"
value
=
"2"
>健身
<
input
type
=
"checkbox"
name
=
"like"
value
=
"3"
>游泳
</
p
>
<
p
>
<
label
for
=
""
>玉 照:</
label
>
<
input
type
=
"file"
name
=
"file"
>
</
p
>
<
p
>
<
label
for
=
""
>籍 贯:</
label
>
<
select
name
=
"address"
id
=
""
>
<
option
value
=
"0"
>北京</
option
>
<
option
value
=
"1"
>上海</
option
>
<
option
value
=
"2"
>广东</
option
>
<
option
value
=
"3"
selected
=
"selected"
>深圳</
option
>
</
select
>
</
p
>
<
p
>
<
label
for
=
""
>个人描述:</
label
>
<
textarea
name
=
"info"
id
=
""
cols
=
"30"
rows
=
"10"
></
textarea
>
</
p
>
<
p
>
<
input
type
=
"submit"
value
=
"注册"
>
<
input
type
=
"reset"
>
<
input
type
=
"hidden"
name
=
"isVIP"
value
=
"yes"
>
<
input
type
=
"button"
value
=
"普通按钮"
>
</
p
>
</
form
>
</
body
>
</
html
>