搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
HTML参考手册
HTML 属性
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>大卫编程网(div.cn)</title> </head> <body> <form> <input type ="text” name="name" value="enter your name:" size="25" maxlength="30" accesskey="n"> <u>n</u>ame<br><br> <input type ="password" name="passwd" size="25" maxlength="30" accesskey="p"> <u>p</u>password<br><br> <input type ="text" name="address" size="25" maxlength="30" accesskey="a"> <u>a</u>address<br><br> <input type ="radio" name="sex" value="male" accesskey="m" checked><u>m</u>ale<br> <input type ="radio" name="sex" value="female" accesskey="f"> <u>f</u>female<br> </form> </body> </html>
运行结果