-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (68 loc) · 2.72 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
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Chatbot
</title>
<link rel = "stylesheet" href = "stylesheet.css">
</head>
<body>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<div id="center-text">
<h1 style = "margin-top: -20%; color:initial; font-family: 'Courier New', Courier, monospace; font-size: 50px; color: blue;">Welcome</h1>
<p> </p>
</div>
<div class="parallax"></div>
<div style="height:1000px; background-color: cyan;">
<div class="special"> Hi there! Don't you wanna know about me? </div>
<br>
<div style=" font-size: 25px; font-family: Arial, Helvetica, sans-serif;">
I am a Personal care Chatbot, I can make your life more confortable, you can easily interact with me. You can do some cool stuff with me
</div>
<br>
<div style="text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif; color: blue;">
How can I be useful to you ?
</div>
<div style=" font-size: 25px; font-family: Arial, Helvetica, sans-serif;"">
Do you want to listen Music or do you want to take a typing test or do you want to shop or do you want to take some yoga class or do you want to read a story, then you are in the right place, I can do all this stuff by taking you to some awesome places, so get ready you can interact with me by clicking on my pop-up button which is in the bottom right corner. You can also have an friendly chat with me.
</div>
<br>
<div style="margin-right: -50%;">
<img src="music.jpg" width="310" height="300"/>
<img src="shop.jpg" width="330" height="300"/>
<img src="story.jpg" width="350" height="300"/>
<img src="typing.jpg" width="350" height="300"/>
</div>
<br>
<div>
<img src="yoga.jpg" class="centered"/>
</div>
</div>
<div id="body">
<div id="chat-circle" class="btn btn-raised">
<div id="chat-overlay"></div>
<img style = "margin-top: -37%; margin-left: -30%;" src = "iconr.png"/>
</div>
<div class="chat-box">
<div class="chat-box-header">
ChatBot
<span class="chat-box-toggle"><i class="material-icons">close</i></span>
</div>
<div class="chat-box-body">
<div class="chat-box-overlay">
</div>
<div class="chat-logs">
</div><!--chat-log -->
</div>
<div class="chat-input">
<form>
<input type="text" id="chat-input" placeholder="Send a message..."/>
<button type="submit" class="chat-submit" id="chat-submit"><img style = "margin-top: 20%; margin-left: -20%; width: inherit;" src = "send.png"></button>
</form>
</div>
</div>
</div>
<script src="addon.js"></script>
</body>
</html>