You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
557 B
19 lines
557 B
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AI助手</title>
|
|
<link rel="stylesheet" href="css/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="chat-container">
|
|
<div id="chat-history"></div>
|
|
<div class="input-area">
|
|
<input type="text" id="user-input" placeholder="输入您的问题...">
|
|
<button id="send-btn">发送</button>
|
|
</div>
|
|
</div>
|
|
<script src="js/script.js"></script>
|
|
</body>
|
|
</html> |