-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
169 lines (121 loc) · 6.4 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
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HealthBot</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/x-icon" href="images/favicon.svg">
</head>
<body>
<header>
<div class="container">
<a href="#" class="logo"><span>H</span>ealth<span>B</span>ot.</a>
<nav class="nav">
<ul>
<li><a href="#home">home</a></li>
<li><a href="#about">about</a></li>
<li><a href="#contact">contact</a></li>
</ul>
</nav>
<div class="fas fa-bars"></div>
</div>
</header>
<section class="home" id="home">
<div class="container">
<div class="row min-vh-100 align-items-center text-center text-md-left">
<div class="col-md-6 pr-md-5" data-aos="zoom-in">
<img src="images/home__img.svg" width="100%" alt="">
</div>
<div class="col-md-6 pl-md-5 content" data-aos="fade-left">
<h1><span>stay</span> healthy, <span>stay</span> safe.</h1>
<h3>your personalized healthcare bot service.</h3>
<a href="https://webchat.botframework.com/embed/qnahealthbot1503-bot?s=u147Lo9vLp4.0GpUACtS3bU232lxjVFzO7Y4J8GOUeXHPHd94i5AOIM" target="blank"><button class="button">chat now</button></a>
<!-- <iframe src='https://webchat.botframework.com/embed/qnahealthbot1503-bot?s=YOUR_SECRET_HERE' style='min-width: 400px; width: 100%; min-height: 500px;'></iframe> -->
</div>
</div>
</div>
</section>
<section class="about" id="about">
<div class="container">
<div class="row min-vh-100 align-items-center">
<div class="col-md-6 content" data-aos="fade-right">
<div class="box">
<h3> <i class="fas fa-lock"></i> privacy </h3>
<p>HealthBot only uses persistent storage services that are always encrypted at rest. Your communication is private and safe.</p>
</div>
<div class="box">
<h3> <i class="fas fa-clock"></i> 24x7 support </h3>
<p>HealthBot provides round the clock support to the customers.</p>
</div>
<div class="box">
<h3> <i class="fas fa-stethoscope"></i> ai check-up </h3>
<p>HealthBot contains built-in scenarios and performs the diagnosis through artificial intelligence.</p>
</div>
</div>
<div class="col-md-6 d-none d-md-block" data-aos="fade-left">
<img src="images/about-img.jpg" width="100%" alt="">
</div>
</div>
</div>
</section>
<!-- about section ends -->
<!-- contact section starts -->
<section class="contact" id="contact">
<div class="container min-vh-100">
<div class="row justify-content-center">
<h1 class="heading"><span>'</span> contact us <span>'</span></h1>
<div class="col-md-10" data-aos="flip-down">
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<div class="inputBox">
<input type="text" placeholder="full name">
<input type="number" placeholder="phone">
</div>
<div class="inputBox">
<input type="email" placeholder="your email">
<input type="text" placeholder="place of residence">
</div>
<textarea name="" id="" cols="30" rows="10" placeholder="message"></textarea>
<input type="submit" name="" id="" value="send" class="button">
</form>
</div>
</div>
</div>
</section>
<!-- contact section ends -->
<!-- footer section starts -->
<section class="footer">
<div class="container">
<div class="row">
<div class="col-md-4" data-aos="fade-right">
<a href="#" class="logo"><span>H</span>ealth<span>B</span>ot.</a>
<p>Your Personalized Healthcare Bot Service.</p>
</div>
<div class="col-md-4 text-center" data-aos="fade-up">
<h3>links</h3>
<a href="#">home</a>
<a href="#">about</a>
<a href="#">contact</a>
</div>
</div>
</div>
<h1 class="credit text-center mx-auto">created by <span>nikhil shanbhag</span>.</h1>
</section>
<!-- footer section ends -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<script src="js/app.js"></script>
<script>
AOS.init({
duration:1000,
delay:400
});
</script>
</body>
</html>