<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> </head> <body> <table width="70%" align="center"> <tr> <td> <fieldset> <legend>域名注册</legend> <form> <table border="1" bordercolor="#000000" cellpadding="7" cellspacing="0" width="70%" align="center"> <tr> <th colspan="2">请填写域名信息(请您务必填写真实、有效和完整的域名注册信息)</th> </tr> <tr> <td>登陆帐号:</td> <td><input type="text" name="user" /></td> </tr> <tr> <td>密码:</td> <td><input type="password" name="psw" /></td> </tr> <tr> <td>性别:</td> <td> <input type="radio" name="sex" value="nan" id="man" /><label for="man">男</label> <input type="radio" name="sex" value="nv" id="woman" /><label for="woman">女</label> </td> </tr> <tr> <td>注册网址:</td> <td><input type="text" name="website" value="www." readonly="readonly" disabled="disabled" /></td> </tr> <tr> <td>注册网址后缀:</td> <td> <input type="checkbox" name="com" value="com" checked="checked" />com <input type="checkbox" name="cn" value="cn" />cn <input type="checkbox" name="net" value="net" />net <input type="checkbox" name="org" value="org" />org </td> </tr> <tr> <td>所属区域:</td> <td> <table> <tr> <td> <select name="国家"> <option value="none">--选择国家--</option> <option value="cn">中国</option> <option value="en">英国</option> <option value="usa">美国</option> </select> </td> <td> <select name="省份"> <option value="none">--选择省份--</option> <optgroup label="中国"> <option value="bj">北京</option> <option value="sh">上海</option> <option value="wc">武汉</option> </optgroup> <optgroup label="英国"> <option value="london">伦敦</option> <option value="Birmingham">伯明翰</option> <option value="Liverpool">利物浦</option> </optgroup> <optgroup label="美国"> <option value="New York"> 纽约</option> <option value="Los Angeles">洛杉矶</option> <option value="Chicago">芝加哥</option> </optgroup> </select> </td> </tr> </table> </td> </tr> <tr> <td colspan="2" align="center"><input type="submit" /><input type="reset" /></td> </tr> </table> </form> </fieldset> </td> </tr> </table> </body> </html>
3_表单练习.html
原创1154179272 博主文章分类:html+css ©著作权
文章标签 3_表单练习.html 文章分类 前端开发
上一篇:2_表格.html
下一篇:4_frame_a.html
-
纯html的form表单实操练习
纯html的form表单实操练习
html5 java python html -
ElasticSearch学习篇3_整合SpringBoot、索引、文档基本操作API练习
一、整合SpringBoot基本步骤查看文档:https://www.elastic.co/guide/index.html各种语言客户端:https://www.elastic.co/guide/
java elasticsearch spring boot spring System -
Java入门 | 3_数组
3_数组
数组 初始化 数组元素 -
排序3_插入排序
插入排序简单理解把所有的元素分成 排好序的 和 未排好序的,每次只需要 从 未排序元素中 取出一个元素,插到排好序的合适
排序算法 插入排序 java 算法 i++ -
JAVA学习笔记3_数组
Java数组基础知识
Java 数组