美化界面<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>注册</title> </head> <body> <h1>注册</h1> <form action="/Register" method="post"> <label for="username">用户名:</label> <input type="text" name="username" id="username" required><br> <label for="password">密码:</label> <input type="password" name="password" id="password" required><br> <input type="submit" value="注册"> <a href="/login.html">已注册,去登录</a> </form> </body> </html>
时间: 2023-06-27 22:02:35 浏览: 301
可以考虑使用CSS样式来美化界面,例如添加背景颜色、字体样式等。以下是一个简单的示例:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>注册</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
color: #333;
}
form {
margin: 0 auto;
width: 300px;
border: 1px solid #ccc;
padding: 20px;
background-color: #fff;
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
label {
display: block;
margin-bottom: 10px;
color: #666;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 3px;
box-sizing: border-box;
margin-bottom: 20px;
}
input[type="submit"] {
background-color: #333;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 3px;
cursor: pointer;
}
a {
display: block;
text-align: center;
margin-top: 20px;
color: #666;
}
</style>
</head>
<body>
<h1>注册</h1>
<form action="/Register" method="post">
<label for="username">用户名:</label>
<input type="text" name="username" id="username" required>
<label for="password">密码:</label>
<input type="password" name="password" id="password" required>
<input type="submit" value="注册">
<a href="/login.html">已注册,去登录</a>
</form>
</body>
</html>
你可以将上面的代码复制到HTML文件中,然后打开文件来查看美化后的效果。当然,你也可以根据自己的需求来调整CSS样式。
阅读全文