-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (128 loc) · 5.22 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dhwani</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Muli:300,400,700,900" rel="stylesheet">
<link rel="stylesheet" href="fonts/icomoon/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/style.css">
</head>
<style>
#flex {
display: flex;
justify-content: center;
align-items: center;
}
#webchat {
display: block;
z-index: 1000;
height: 620px;
width: 1000px;
margin: 50px;
background: #fff;
padding: 10px;
box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25);
border-radius: 20px;
}
</style>
<body data-spy="scroll" data-target=".site-navbar-target" data-offset="300">
<div class="site-wrap">
<div class="site-mobile-menu site-navbar-target">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close mt-3">
<span class="icon-close2 js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div>
<header class="site-navbar py-4 js-sticky-header site-navbar-target" role="banner">
<div class="container-fluid">
<div class="d-flex align-items-center">
<div class="site-logo"><a href="index.html">Dhwani</a></div>
<div>
<nav class="site-navigation position-relative text-right" role="navigation">
<ul class="site-menu main-menu js-clone-nav mr-auto d-none d-lg-block">
<li><a href="#home-section" class="nav-link">Home</a></li>
<li><a href="#work-section" class="nav-link">The Assistant</a></li>
<!-- <li><a href="#process-section" class="nav-link">Pharmacy</a></li> -->
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="intro-section" id="home-section">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-4 mr-auto" data-aos="fade-up">
<h1>Welcome to Dhwani</h1>
<p class="mb-5">An interactive & intelligent text assistant powered by deep learning to answer all your medical queries
<br>Developed as a part of the Philips Code-to-Care Hackathon Challenge 2019</p>
<p><a href="#work-section" class="btn btn-outline-light py-3 px-5">Get Started</a></p>
</div>
<div class="col-lg-2 ml-auto" data-aos="fade-up" data-aos-delay="100">
<figure class="img-absolute">
<img src="images/person_1.jpg" alt="Image" class="img-fluid">
</figure>
</div>
</div>
</div>
</div>
<div class="site-section section-2" id="work-section">
<div class="container">
<div class="row">
<div class="col-lg-6 mb-5">
<span class="section-sub-title d-block">The Assistant</span>
<h2 class="section-title">Dhwani</h2>
<div id="webchat" role="main" box-sizing: border-box;
width: 50%;
border: 5px solid red;
float: left;>
<script src="https://cdn.botframework.com/botframework-webchat/latest/webchat.js"></script>
<script>
window.WebChat.renderWebChat(
{
directLine: window.WebChat.createDirectLine({
token: '144gzebVYug.NqWuj1iHLz4JZYniBh_DHaw5AVnkaAK6DHsKl0zIcmg'
}),
// userID: new String(),
// username: new String(),
locale: 'en-US',
botAvatarInitials: 'WC',
userAvatarInitials: 'WW'
},
document.getElementById('webchat')
);
</script>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/jquery-migrate-3.0.1.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.stellar.min.js"></script>
<script src="js/jquery.countdown.min.js"></script>
<script src="js/bootstrap-datepicker.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/aos.js"></script>
<script src="js/jquery.fancybox.min.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/main.js"></script>
</body>
</html>