-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (76 loc) · 2.17 KB
/
Copy pathindex.html
File metadata and controls
85 lines (76 loc) · 2.17 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.container {
position: relative;
font-family: Arial;
}
.text-block {
position: absolute;
bottom: 20px;
right: 20px;
background-color: Grey;
color: white;
padding-left: 20px;
padding-right: 20px;
}
</style>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: grey;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>
<div class="container">
<div class="topnav">
<a class="active" href="nav.html">Navigation</a>
<a href="https://www.covid19india.org/">Live Count</a>
<a href="https://forms.gle/8xJpnmRP3G85MsAV6">Contact</a>
<a href="https://forms.gle/tqfnq4Ye16DuwdUA9">E-pass</a>
<a class="active" href="e_pass.html">EPASS</a>
<a href="https://web-chat.global.assistant.watson.cloud.ibm.com/preview.html?region=eu-gb&integrationID=f34b6346-b385-4eac-a14b-c3e00409d6d2&serviceInstanceID=3032adfd-f14c-4c95-afbb-68d78213e77c">Covid19 Assistant</a>
<div style="padding-left:16px">
</div>
<script>
window.watsonAssistantChatOptions = {
integrationID: "362ff5dd-5846-4975-93e9-1b60e4ba5043", // The ID of this integration.
region: "eu-gb", // The region your integration is hosted in.
serviceInstanceID: "3032adfd-f14c-4c95-afbb-68d78213e77c", // The ID of your service instance.
onLoad: function(instance) { instance.render(); }
};
setTimeout(function(){
const t=document.createElement('script');
t.src="https://web-chat.global.assistant.watson.appdomain.cloud/loadWatsonAssistantChat.js";
document.head.appendChild(t);
});
</script>
<img src="https://analyticsindiamag.com/wp-content/uploads/2020/03/aim_ibm.jpg" style="width: 100%; height: auto; display: block;" alt="IBM AI Image">
</div>
</div>
</div>
</body>
</html>