-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbot.html
65 lines (58 loc) · 2.37 KB
/
bot.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
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Waste | CHATBOT</title>
<link rel="stylesheet" href="CSS/bot.css">
<link rel="stylesheet" href="CSS/header.css">
<link rel="stylesheet" href="CSS/footer.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
</head>
<body>
<header class="head">
<div class="navbar">
<div class="logo">E-WASTE</div>
<div class="main-nav">
<ul>
<a href="index.html"><li>HOME</li></a>
<a href="locate.html"><li>LOCATE</li></a>
<a href="credit.php"><li>CREDIT</li></a>
<a href="about.php"><li>ABOUT</li></a>
<a href="bot.html"><li style="color: #1B6B95;;">BOT</li></a>
</ul>
</div>
<div class="user-account">
<a href="index.html"><i class="fa-solid fa-user"></i></a>
</div>
</div>
</header>
<main>
<div class="chat-container">
<div class="chat-box" id="chat-box"></div>
<input type="text" id="user-input" class="user-input" placeholder="Type your message...">
<button onclick="sendMessage()" class="send-button">Send</button>
</div>
</main>
<footer>
<div class="footer">
<div class="connect">
<p>CONNECT WITH US!</p>
</div>
<div class="social-links">
<a target="_blank" href="https://instagram.com/amit_sahu_13?igshid=OGQ5ZDc2ODk2ZA=="><i
class="fa-brands fa-instagram"></i> Instagram</a>
<a target="_blank" href="https://www.linkedin.com/in/amit-sahu-08ab62220/"><i
class="fa-brands fa-linkedin"></i> Linkedin</a>
<a target="_blank" href="https://www.youtube.com/watch?v=DpEiNciVLwM"><i
class="fa-brands fa-youtube"></i> Youtube</a>
</div>
<div class="copyright">
<p>COPYRIGHT © BYTECLEAN | 2023 - MEDICAPS UNIVERSITY</p>
</div>
</div>
</footer>
<script src="JAVA-SCRIPTS/bot-enter-send.js"></script>
<script src="JAVA-SCRIPTS/bot.js"></script>
</body>
</html>