-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathIAC.html
More file actions
35 lines (34 loc) · 972 Bytes
/
IAC.html
File metadata and controls
35 lines (34 loc) · 972 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Background Image Example</title>
<style>
/* Add your image URL as the background */
body {
background-image: url('IAC.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
}
</style>
</head>
<body>
<!-- Your page content goes here -->
<script>
sessionStorage.clear();
window.openDialogSettings = {
url: 'https://apps.cloud.demo.opendialog.ai',
appKey: '36|wrHOUjJ2y1LL8ZgIFr1h3CNHdKQywWQJKjm3neLV',
user: {
custom: {
selected_scenario: '4138'
}
},
};
</script>
<script src='https://apps.cloud.demo.opendialog.ai/vendor/webchat/js/opendialog-bot.js'></script>
</body>
</html>