-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatbot.html
111 lines (104 loc) · 3.67 KB
/
chatbot.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Important Meta Tag -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- External CSS file -->
<link rel="stylesheet" href="output/css/styles.css" />
<!-- Title -->
<title>SPEAK WITH ROBOT</title>
</head>
<body>
<!-- NAVIGATION HTML START -->
<div class="navigation">
<input type="checkbox" class="navigation_checkbox" id="navi-toggle" />
<label for="navi-toggle" class="navigation_button">
<span class="navigation_icon"> </span>
</label>
<div class="navigation_background">
</div>
<nav class="navigation_nav">
<ul class="navigation_list">
<li class="navigation_item">
<a href="index.html" class="navigation_link">
Go To Home Page
</a>
</li>
<li class="navigation_item">
<a href="ebook.html" class="navigation_link">
Read Ebooks
</a>
</li>
<li class="navigation_item">
<a href="calendar.html" class="navigation_link">
Calendar
</a>
</li>
<li class="navigation_item">
<a href="chatbot.html" class="navigation_link">
Speak With Robot
</a>
</li>
<li class="navigation_item">
<a href="contact.html" class="navigation_link">
Contact Me
</a>
</li>
</ul>
</nav>
</div>
<!-- NAVIGATION HTML END -->
<!-- CHATBOT HTML CODE STARTED -->
<section class="chatbot-main">
<h1>Speak With the Robot</h1>
<div class="user-area">
<img src="img/user.png" />
</div>
<div class="chatarea-main">
<div class="chatarea-outer">
<!--
<div class="chatarea-inner user">Hello hi, how area you, i am good. What about you!</div>
<div class="chatarea-inner chatbot">Hello hi, how area you, i am good. What about you!</div>
<div class="chatarea-inner user">Hello hi, how area you, i am good. What about you!</div>
-->
</div>
</div>
<div class="chatbot-area">
<img src="img/chatbot.png" />
</div>
<div class="mic-box">
<div class="object">
<div class="outline"></div>
<div class="outline" id="delayed"></div>
<div class="button"></div>
<div class="button" id="circlein">
<svg
id="mic"
class="mic-icon"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 1000 1000"
enable-background="new 0 0 1000 1000"
xml:space="preserve"
style="fill: #1e2d70;"
>
<g>
<path
d="M500,683.8c84.6,0,153.1-68.6,153.1-153.1V163.1C653.1,78.6,584.6,10,500,10c-84.6,0-153.1,68.6-153.1,153.1v367.5C346.9,615.2,415.4,683.8,500,683.8z M714.4,438.8v91.9C714.4,649,618.4,745,500,745c-118.4,0-214.4-96-214.4-214.4v-91.9h-61.3v91.9c0,141.9,107.2,258.7,245,273.9v124.2H346.9V990h306.3v-61.3H530.6V804.5c137.8-15.2,245-132.1,245-273.9v-91.9H714.4z"
/>
</g>
</svg>
</div>
</div>
</div>
</section>
<!-- CHATBOT HTML CODE ENDED -->
<!-- JAVASCRIPT File -->
<script src="js/chatbot.js"></script>
</body>
</html>