<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>表单综合练习</title>
<style type="text/css">
form{width: 400px;background: #f7f7f7;padding: 10px;margin-top: 150px;margin-left: 300px;}
button{background: #808080;padding: 8px;border-radius:5px;}
button:hover{background: #919191;padding: 10px;border-radius:5px;}
input{padding: 8px;background: #f8f8f8;}
input:focus{padding: 8px;background: #a9a9a9;}
</style>
</head>
<body>
<form action="">
<fieldset>
<legend>信息注册</legend>
<p><label for="user">账号:</label><input type="text" name="user" id="user" placeholder="账号" required=""></p>
<p><label for="password">密码:</label><input type="password" name="password" id="password" placeholder="密码"></input></p>
<p><label for="tel">电话:</label><input type="tel" name="tel" id="tel" placeholder="电话"></p>
<p><label for="email">邮件:</label><input type="email" name="email" id="email" placeholder="电子邮箱"></p>
<!-- <p><label for=""></label>这样单击后自动获得焦点</p> -->
<!-- <input type="submit" value="注册"></input> -->
<button>注册用户</button>
</fieldset>
</form>
</body>
</html>
相关文章
- html5 javascript 表单练习案例
- HTML5中 HTML表单和PHP环境搭建及与PHP交互 韩俊强的博客
- 18_Android中Service的生命周期,远程服务,绑定远程服务,aidl服务调用,综合服务案例,编写一个应用程序调用远程支付宝远程服务场景
- 优秀的 HTML5 实战教程,提升你的综合开发能力
- 10个HTML5 实战教程 提升你的综合开发能力
- JavaScript:综合案例---房贷计算器的实现
- 075 01 Android 零基础入门 01 Java基础语法 09 综合案例-数组移位 07 综合案例-数组移位-主方法功能4的实现
- 073 01 Android 零基础入门 01 Java基础语法 09 综合案例-数组移位 05 综合案例-数组移位-主方法功能1和2的实现
- python70 前端框架之vue js的集中循环方式、key值的解释、input事件、v-model双向数据绑定、过滤案例、事件修饰符、按键修饰符、表单控制
- Html5的表单元素