teststatic / index.html
hsuwill000's picture
Update index.html
33c5766 verified
raw
history blame contribute delete
670 Bytes
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My ChatGPT-like App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="chat-container">
<header class="chat-header">
<h1>Large Model Chat</h1>
</header>
<main id="chat-window" class="chat-window"></main>
<footer class="chat-input-area">
<textarea id="userMessage" placeholder="輸入訊息後按 Enter 送出..."></textarea>
<button id="sendBtn">送出</button>
</footer>
</div>
<script type="module" src="index.js"></script>
</body>
</html>