-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (25 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI-Chatbot</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Mr+De+Haviland" rel="stylesheet">
</head>
<body>
<h1>Let's talk, shall we ?</h1>
<button id="talk"><i class="fa fa-microphone" aria-hidden="true"></i></button>
<section class="messages">
<article class="you">
You: <span id="you" default-message="listening ..."> < Your messages ></span>
</article>
<article class="bot">
Bot: <span id="bot" default-message="..."> < Bot replies ></span>
</article>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.1/socket.io.js"></script>
<script src="script.js"></script>
</body>
</html>