-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (26 loc) · 994 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (26 loc) · 994 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QChat</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>Chat with QBot</header>
<section class="main">
<div class="user-area">
<img src="images/user4.png">
</div>
<div class="chatarea-main">
<div class="chatarea-outer"></div>
</div>
<div class="chatbot-area">
<img src="images/chatbot3.png">
</div>
<button id="mic"><i class="flaticon-microphone"></i></button>
</section>
<script src="js/main.js"></script>
</body>
</html>