-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatbot.html
44 lines (37 loc) · 1.57 KB
/
chatbot.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="styles/style.css" />
<meta charset="UTF-8">
<title>Chatbot</title>
</head>
<body>
<div class="container">
<div class="chatbox">
<div class="chatbox__support">
<div class="chatbox__header">
<div class="chatbox__image--header">
<img src="C:\Users\mmyai\TALN\projet TALN\styles\images\docteur_hakim.png" alt="image">
</div>
<div class="chatbox__content--header">
<h4 class="chatbox__heading--header">استشارة طبية</h4>
<p class="chatbox__description--header">عسلامة، أنا الدكتور حكيم. كيفلش نجم نعاونك؟</p>
</div>
</div>
<div class="chatbox__messages">
<div></div>
</div>
<div class="chatbox__footer">
<input type="text" placeholder="اكتب الاستشارة هنا...">
<img src="styles/images/micro.png" class=" chatbox__send--footer record__button" alt="Enregistrer">
<img src="styles/images/send.png" class=" chatbox__send--footer send__button" alt="Send">
</div>
</div>
<div class="chatbox__button">
<button><img src="styles/images/chatbox-icon.svg" /></button>
</div>
</div>
</div>
<script src="styles/app.js"></script>
</body>
</html>