-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (62 loc) · 2.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PaLm Chatbot</title>
<link rel="icon" href="./img/ai2.png" type="image/x-icon">
<link href="./palmbot.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200"
rel="stylesheet"
/>
<script src="./palmbot.js" defer></script>
</head>
<body>
<div class="chat-container">
<!--
<div class="chat out">
<div class="chat-content">
<div class="chat-info">
<img src="./img/user.png" alt="user-icon" />
<p>ay testttttt a</p>
</div>
</div>
</div>
<div class="chat in">
<div class="chat-content">
<div class="chat-info">
<img src="./img/robot.png" alt="chatbot-icon" />
<p>ay testttttt a</p>
</div>
<span class="material-symbols-rounded">content_copy</span>
</div>
</div>
<div class="chat in">
<div class="chat-content">
<div class="chat-info">
<img src="./img/robot.png" alt="chatbot-icon" />
<div class="typing-animation">
<div class="typing-dot" style="--delay: 0.3s"></div>
<div class="typing-dot" style="--delay: 0.4s"></div>
<div class="typing-dot" style="--delay: 0.5s"></div>
</div>
</div>
<span class="material-symbols-rounded">content_copy</span>
</div>
</div>
-->
</div>
<div class="typing-container">
<div class="typing-content">
<div class="typing-textarea">
<textarea class="chat-input" placeholder="Enter Your Promot Here!"></textarea>
<span class="send-btn material-symbols-rounded">send</span>
</div>
<div class="typing-setting">
<span class="theme-btn material-symbols-rounded">light_mode</span>
<span class="delete-btn material-symbols-rounded">delete</span>
</div>
</div>
</body>
</html>