Create public/index.html
Browse files- public/index.html +38 -0
public/index.html
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="id">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Ikyy Chatbot</title>
|
| 7 |
+
<link rel="stylesheet" href="styles.css">
|
| 8 |
+
</head>
|
| 9 |
+
<body>
|
| 10 |
+
<!-- Header dengan judul di tengah dan animasi teks RGB -->
|
| 11 |
+
<header>
|
| 12 |
+
<h1 id="header-title">Ikyy Chatbot</h1>
|
| 13 |
+
</header>
|
| 14 |
+
|
| 15 |
+
<!-- Area utama untuk chat -->
|
| 16 |
+
<main>
|
| 17 |
+
<div id="chat-container">
|
| 18 |
+
<!-- Pesan-pesan chat akan ditampilkan di sini -->
|
| 19 |
+
</div>
|
| 20 |
+
<!-- Typing indicator (animasi titik) -->
|
| 21 |
+
<div id="typing-indicator" class="hidden">
|
| 22 |
+
<div class="dot"></div>
|
| 23 |
+
<div class="dot"></div>
|
| 24 |
+
<div class="dot"></div>
|
| 25 |
+
</div>
|
| 26 |
+
</main>
|
| 27 |
+
|
| 28 |
+
<!-- Form input di footer -->
|
| 29 |
+
<footer>
|
| 30 |
+
<form id="chat-form">
|
| 31 |
+
<textarea id="chat-input" placeholder="Ketik pesan Anda..." rows="1"></textarea>
|
| 32 |
+
<button type="submit" id="send-button">Kirim</button>
|
| 33 |
+
</form>
|
| 34 |
+
</footer>
|
| 35 |
+
|
| 36 |
+
<script src="script.js"></script>
|
| 37 |
+
</body>
|
| 38 |
+
</html>
|