-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (78 loc) · 3.38 KB
/
index.html
File metadata and controls
89 lines (78 loc) · 3.38 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat Bot</title>
<!-- Primary Meta Tags -->
<meta name="title" content="Chat Bot">
<meta name="description"
content="ChatBot is an interactive chat application powered by Django and OpenAI's GPT-3.5-turbo model. Engage in natural conversations and receive intelligent responses in real-time. Explore the future of intelligent chat applications with ChatBot.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://devnamdev2003.github.io/chatBot/">
<meta property="og:title" content="Chat Bot">
<meta name="description"
content="ChatBot is an interactive chat application powered by Django and OpenAI's GPT-3.5-turbo model. Engage in natural conversations and receive intelligent responses in real-time. Explore the future of intelligent chat applications with ChatBot.">
<meta property="og:image"
content="https://devnamdev2003.github.io/chatBot/share.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url"
content="https://devnamdev2003.github.io/chatBot/">
<meta property="twitter:title" content="Chat Bot">
<meta property="twitter:image"
content="https://devnamdev2003.github.io/chatBot/share.png">
<meta name="description"
content="ChatBot is an interactive chat application powered by Django and OpenAI's GPT-3.5-turbo model. Engage in natural conversations and receive intelligent responses in real-time. Explore the future of intelligent chat applications with ChatBot.">
<link rel="apple-touch-icon" sizes="180x180"
href="favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32"
href="favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16"
href="favicon_io/favicon-16x16.png">
<link rel="manifest"
href="favicon_io/site.webmanifest">
<script src="js/script.js"
defer></script>
<link rel="stylesheet"
href="css/style.css">
<link rel='stylesheet'
href='https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.3/jquery.mCustomScrollbar.min.css'>
<style>
.chat-title h2 p {
padding: 0%;
margin: 1% 0% 0% 0%;
}
</style>
</head>
<body>
<div class="chat">
<div class="chat-title">
<h1>ChatBot</h1>
<h2>
<p>Made by Dev</p>
</h2>
<figure class="avatar">
<img width="64" height="64"
src="chatbot.png"
alt="bot" />
</figure>
</div>
<div class="messages">
<div class="messages-content"></div>
</div>
<div class="message-box">
<textarea type="text" class="message-input" id="user-message"
placeholder="Type message..."></textarea>
<button type="submit" class="message-submit">Send</button>
</div>
</div>
<div class="bg"></div>
<script
src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script
src='https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.3/jquery.mCustomScrollbar.concat.min.js'></script>
</body>
</html>