Blogger Information
Blog 24
fans 0
comment 1
visits 14815
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0319课后作业
张成钢的博客
Original
745 people have browsed it

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>用户注册</title>

</head>

<body>

<form action="" method="post">

<table border="0" cellspacing="0" cellpadding="6" width=400 bgcolor="skyblue">

<caption><h2>用户注册</h2></caption>

<tr><td colspan="2"><hr></td></tr>

<tr>

<td width="60"><label for="name">邮箱:</label></td>

<td width="300"><input type="text" id="name" name="name" value="" placeholder="example@mail.com" size="30" width="200"></td>

</tr>


<tr>

<td><label for="pw">密码:</label></td>

<td><input type="password" id="pw" name="pw" value="" placeholder="大小写字母+数字不少于10位" size="30" ></td>

</tr>


<tr>

<td>性别:</td>

<td>

<input type="radio" name="sex" value="1">男

<input type="radio" name="sex" value="0">女

<input type="radio" name="sex" value="2" checked="">保密

</td>

</tr>


<tr>

<td>爱好:</td>

<td>

<input type="checkbox" name="like[]" value="cs">C#

<input type="checkbox" name="like[]" value="delphi">Delphi

<input type="checkbox" name="like[]" value="php" checked="">PHP

<input type="checkbox" name="like[]" value="js">JavaScript

</td>

</tr>


<tr>

<td><label for="level">级别:</label></td>

<td>

<select id="level" name="level" style="width:150px">

<option value="">入门</option>

<option value="">初级</option>

<option value="">中级</option>

<option value="">高级</option>

</select>

</td>

</tr>


<tr>

<td><label for="photo">照片:</label></td>

<td>

<img src="../../images/12.jpg" height="30">

<input type="file" id="photo" name="photo" accept="image/*">

</td>

</tr>


<tr>

<td><label for="memo">简介:</label></td>

<td>

<textarea id="memo" name="memo" rows="5" cols="36" placeholder="好好学习天天向上"></textarea>

</td>

</tr>

<tr>

<td colspan="2">

<hr>

<input type="submit" name="submit" value="提交">

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

<input type="reset" name="reset" value="重置"></td>

</td>

</tr>


</table>

</form>

</body>

</html>

xg0319.png

0319-1.png0319-2.png0319-3.png

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!