-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (28 loc) · 938 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Chat Bot</title>
<link rel="stylesheet" href="styles.css">
</head>
<body background="https://cdn.discordapp.com/attachments/874976948860878868/940591080506789938/eallperp.png">
<div class="logo">
<img src="/EXON-logo-white.png" alt="LOGO" width="300px" height="150px" >
</div>
<div class="box">
<div class="top">
<h1> 🤖 Exon by Manan and Dev</h1>
</div>
<div class="mid">
<div class="chat">
<h2>Your questions will be answered in the box below.</h2>
<p id="chatLog"> ㅤ </p>
</div>
</div>
<div class="input">
<input type="text" id="userBox" onkeydown="if(event.keyCode == 13){ talk()}" placeholder="Type your question here.">
</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>