移动端html5注册代码
时间: 2023-12-16 18:04:22 浏览: 68
HTML5手机登录注册表单代码.zip
以下是一个简单的移动端HTML5注册表单代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>注册表单</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
form {
padding: 10px;
background-color: #fff;
max-width: 500px;
margin: 0 auto;
box-shadow: 0px 2px 5px #ccc;
border-radius: 5px;
}
input[type="text"], input[type="email"], input[type="password"] {
width: 100%;
padding: 10px;
margin: 5px 0;
border: none;
border-radius: 3px;
box-shadow: 0px 1px 3px #ccc;
font-size: 16px;
color: #555;
}
input[type="submit"] {
display: block;
background-color: #4CAF50;
color: #fff;
padding: 10px;
border: none;
border-radius: 3px;
font-size: 18px;
cursor: pointer;
margin-top: 10px;
}
</style>
</head>
<body>
<form>
<h2>注册</h2>
<label for="name">用户名</label>
<input type="text" id="name" name="name" required>
<label for="email">电子邮件</label>
<input type="email" id="email" name="email" required>
<label for="password">密码</label>
<input type="password" id="password" name="password" required>
<input type="submit" value="注册">
</form>
</body>
</html>
```
这个表单包含了用户名、电子邮件和密码字段,以及一个提交按钮。在移动设备上,该表单将自动缩放到适合屏幕大小。
阅读全文