这是一个基本的用户注册页面的HTML和CSS代码示例。请注意,这只是一个基本的示例,不包含任何后端逻辑或数据库交互。在实际应用中,你需要使用后端语言(如PHP,Node.js等)来处理用户输入并存储数据。此外,还需要添加适当的验证和安全性措施,如防止SQL注入和密码哈希等。

HTML代码:
<!DOCTYPE html>
<html>
<head>
<title>用户注册</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="register-page">
<h2>用户注册</h2>
<form action="/register" method="post">
<div class="form-group">
<label for="username">用户名:</label>
<input type="text" id="username" name="username" required>
</div>
<div class="form-group">
<label for="password">密码:</label>
<input type="password" id="password" name="password" required>
</div>
<div class="form-group">
<label for="email">电子邮件:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<input type="submit" value="注册">
</div>
</form>
</div>
</body>
</html>对应的CSS样式(在styles.css文件中):

body {
font-family: Arial, sans-serif;
}
.register-page {
width: 300px;
margin: 0 auto;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"], input[type="password"], input[type="email"] {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 10px 0;
border: none;
border-radius: 4px;
cursor: pointer; n n /* Responsive design for mobile devices with dark green hover effect and centered text on hover, rounded corners, and optimized for touch
TIME
