html写一个包含 username accont orderName 和time的表单、
时间: 2024-02-28 21:55:22 浏览: 146
好的,这里是一个简单的包含 `username`、`account`、`orderName` 和 `time` 的表单,你可以参考一下:
```html
<!DOCTYPE html>
<html>
<head>
<title>表单示例</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
form {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
}
label {
display: block;
margin-bottom: 10px;
font-size: 16px;
font-weight: bold;
}
input[type="text"] {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
width: 300px;
margin-bottom: 20px;
}
input[type="submit"] {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #4CAF50;
color: #fff;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<form>
<label for="username">用户名:</label>
<input type="text" id="username" name="username" placeholder="请输入用户名">
<label for="account">账号:</label>
<input type="text" id="account" name="account" placeholder="请输入账号">
<label for="orderName">订单名称:</label>
<input type="text" id="orderName" name="orderName" placeholder="请输入订单名称">
<label for="time">时间:</label>
<input type="text" id="time" name="time" placeholder="请输入时间">
<input type="submit" value="提交">
</form>
</body>
</html>
```
在这个示例中,我们使用了 HTML 的表单元素来实现这个功能,包括了四个输入框和一个提交按钮。在表单中,我们使用了 `label` 元素来为每个输入框添加了一个标签,这个标签可以提高表单的可用性和易用性。并且为了让表单更加美观,我们还添加了一些 CSS 样式来美化表单元素的样式。
阅读全文