zoukankan      html  css  js  c++  java
  • 用HTML5写一个简单的注册界面

    <!DOCTYPE html>
    <html>
    	<head>
    		<title>练习4</title>
    		<meta charset="UTF-8"/>
    	</head>
    	<body>
    	<table border="1">
    	<tr>
    		<th>用户名</th>
    		<td><form><input type="text" name="username"/></form></td>
    	</tr>
    	<tr>
    		<th>密码</th>
    		<td><form><input type="password" name="pwd"/></form></td>
    	</tr>
    	<tr>
    		<th>性别</th>
    		<td><form>男<input type="radio" name="xb"value="0"/> 女<input type="radio" name="xb"value="1"/></form></td>
    	</tr>
    	<tr>
    		<th>从事行业</th>
    		<td><form><select name="sc" size="1"/>
    				<option value="0" selected="selected">计算机</option>
    				<option value="1">其他</option>
    			</select>
    			</form></td>
    	</tr>
    	<tr>
    		<th>自我介绍</th>
    		<td><form>自我介绍:<br><textarea name="zhaoshui"cols="30"row="60"></textarea></form></td>
    	</tr>
    	<tr>
    		<th><button>注册</button></th>
    		<td><button>清除</button></td>
    	</tr>
    	</table>
    	</body>
    </html>
    
    练习4
    用户名
    密码
    性别
    从事行业
    自我介绍
    自我介绍:
    你好,欢迎你来到博客,我是布莱昂。在这里你将看到我关于前端技术和框架的一些理解和体会,并且以后所有博客将在这里发布,由于本人技术水平和认知能力有限,文中难免有认识不足和理解错误的地方,欢迎大家留言指正,我将感激不尽!
  • 相关阅读:
    Supervisor安装与使用
    windows常用快捷键和指令
    搜索引擎使用技巧
    golang核心Goroutine和channel
    4、小程序原生底部菜单
    三、小程序值使用vant开发
    axios请求2
    3、小程序消息推送
    居中
    一、底部菜单
  • 原文地址:https://www.cnblogs.com/zxa2020/p/12812693.html
Copyright © 2011-2022 走看看