GPT答: |
7i24.cn
|
<html>
<head>
<title>ChatGpt机器人</title>
<style type="text/css">
body {
background-color: #cccccc;
font-family: sans-serif;
padding: 10px;
text-align: center;
}
.form {
width: 500px;
margin: 0 auto;
padding: 10px 20px;
background-color: #f0f0f0;
text-align: left;
}
input[type="text"] {
width: 300px;
padding: 8px 10px;
font-size: 16px;
margin-bottom: 6px;
border: 1px solid #999;
box-sizing: border-box;
}
textarea {
height: 250px;
width: 450px;
padding: 8px 10px;
font-size: 16px;
border: 1px solid #999;
box-sizing: border-box;
resize: none;
}
input[type="submit"] {
cursor: pointer;
background-color: #4CAF50;
color: #fff;
padding: 8px;
font-size: 16px;
border: none;
border-radius: 5px;
displayed: inline-block;
}
</style>
</head>
<body>
<h1>ChatGpt机器人</h1>
<div class="form">
<p>欢迎使用ChatGPT机器人,请在下面的框内输入您的问题:</p>
<form action="" method="post">
<input type="text" name="question" placeholder="你想问的问题?">
<textarea name="answer" placeholder="机器人回复:" readonly></textarea>
<input type="submit" value="提问">
</form>
</div>
</body>
</html>
|