首页 技术 正文
技术 2022年11月17日
0 收藏 631 点赞 5,075 浏览 1384 个字

  案例说明:   

    - 使用表格实现页面效果
    - 超链接不想要有效果,使用href=”#”
    - 如果表格里面的单元格没有内容,使用空格作为占位符  
    - 使用图片标签提交表单 <input type=”image” src=”图片的路径”/>

完整代码:

<html>
<head>
<title>World</title>
</head>
<body>
<form action="01-hello.html" method="post">
<h3 align="center">欢迎登录此页面!</h3>
<table width="100%">
<tr>
<td align="right">注册邮箱:</td>
<td><input type="text" name="regit"/></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>您还可以使用<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" >手机号</a>注册或者使用<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" >账号</a>注册</td>
</tr>
<tr>
<td align="right">创建密码:</td>
<td><input type="password" name="pwd"/></td>
</tr>
<tr>
<td align="right">真实姓名:</td>
<td><input type="text" name="realname"/></td>
</tr>
<tr>
<td align="right">性别:</td>
<td>
<input type="radio" name="sex" value="famale"/>女
<input type="radio" name="sex" value="male"/>男
</td>
</tr>
<tr>
<td align="right">生日:</td>
<td>
<select name"year">
<option value="1997"/>1997
<option value="1998"/>1998
<option value="1999"/>1999
</select>年
<select name"month">
<option value="01"/>01
<option value="02"/>02
<option value="03" selected="selected"/>03
</select>月
<select name"day">
<option value="20"/>20
<option value="21"/>21
<option value="22"/>22
</select>日
</td>
</tr>
<tr>
<td align="right">我现在:</td>
<td>
<select name"now">
<option value="study"/>正在上学
<option value="1998"/>已经工作
</select>
</td>
</tr>
<tr>
<td>&nbsp;</td>
<td><img src="data:images/verycode.png"/><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" >看不清换一张?</a></td> </tr>
<tr>
<td>&nbsp;</td>
<td><input type="image" src="data:images/btn.png"></td> </tr>
</table>
</form>
</body>
</html>
相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,085
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,560
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,409
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,182
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,819
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,902